Files
BasicsOfComputerSoftwareEng…/POP/02/Exercise02.c
2023-02-21 10:56:54 +08:00

8 lines
154 B
C

#include <stdio.h>
int main() {
int m = 306587;
long n = 28166459852;
printf("m=%hd, n=%hd\n", m, n);
printf("n=%d\n", n);
return 0;
}