Skip to content

Commit 4422e2b

Browse files
variables in c lang (#2) patch to be updated within 2 hours
variables in c lang (#2)
2 parents a679573 + b225a79 commit 4422e2b

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)