This website requires JavaScript.
Explore
Help
Sign In
kabhijit
/
GitDemo-20240905
Watch
1
Star
0
Fork
You've already forked GitDemo-20240905
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
5168e9418a
GitDemo-20240905
/
main.c
12 lines
80 B
C
Raw
Normal View
History
Unescape
Escape
Initial Commit with main.c file
2024-09-05 15:39:17 +05:30
//Initial version
void
main
(
)
{
Add operations for int x
2024-09-05 15:45:27 +05:30
int
x
=
0
;
Make x 1 again
2024-09-05 15:50:49 +05:30
x
=
1
;
Update by Sanjeev
2024-09-05 16:08:20 +05:30
x
=
x
+
4
;
Update inital value of x
2024-09-05 15:47:53 +05:30
Initial Commit with main.c file
2024-09-05 15:39:17 +05:30
while
(
1
)
;
}