修改文件结构。

This commit is contained in:
unlockable
2023-02-21 10:56:54 +08:00
parent a64cfdd9f3
commit 40182871f4
83 changed files with 0 additions and 0 deletions

13
POP/02/Exercise01.c Normal file
View File

@@ -0,0 +1,13 @@
#include <stdio.h>
int main() {
short a = 10;
int b = 100;
int short_length = sizeof a;
int int_length = sizeof(b);
int long_length = sizeof(long);
int char_length = sizeof (char) ;
int longdouble_length = sizeof(long double);
printf("short=%d, int=%d, long=%d, char=%d long double=%d\n", short_length,
int_length, long_length, char_length, longdouble_length);
return 0;
}