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
5c4ed3229b
GitDemo-20240905
/
main.c
13 lines
90 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 y=2
2024-09-05 16:36:42 +05:30
int
x
,
y
=
2
;
the value of x isupdated to 2
2024-09-05 16:39:59 +05:30
x
=
3
;
Add operations for int x
2024-09-05 15:45:27 +05:30
x
=
x
+
3
;
Trying with a new variable y
2024-09-05 16:05:04 +05:30
y
=
y
+
x
;
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
)
;
}