GitDemo-20240905/main.c

12 lines
80 B
C
Raw Normal View History

2024-09-05 15:39:17 +05:30
//Initial version
void main()
{
2024-09-05 15:45:27 +05:30
int x = 0;
2024-09-05 15:47:53 +05:30
x = 2;
2024-09-05 15:45:27 +05:30
x = x+3;
2024-09-05 15:47:53 +05:30
2024-09-05 15:39:17 +05:30
while(1);
}