Skip to content

Commit e51061f

Browse files
data types in c-lang (#11)
2 parents 966f81c + 5acc0d4 commit e51061f

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

3_data_types.c

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#include <stdio.h>
2+
3+
int main (){
4+
char model = 'X';
5+
int model_id = 4923843;
6+
float tetra = 37.3426324;
7+
8+
printf("%d\n" , model_id);
9+
printf("%f\n" , tetra);
10+
printf("%c\n" , model);
11+
12+
return 0;
13+
}

3_data_types.exe

323 KB
Binary file not shown.

0 commit comments

Comments
 (0)