Skip to content

Commit b225a79

Browse files
variables in c lang (#1)
1 parent dae4971 commit b225a79

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

2_variables.c

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#include <stdio.h>
2+
3+
int main ()
4+
{
5+
int myNum = 10;
6+
printf("%d",myNum);
7+
return 0;
8+
}

0 commit comments

Comments
 (0)