Lesson 2.

This commit is contained in:
unlockable
2022-09-23 17:43:59 +08:00
parent 1bc763e78e
commit f3b0055aed
5 changed files with 100 additions and 0 deletions

8
02/Exercise02.c Normal file
View File

@@ -0,0 +1,8 @@
#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;
}