GitDemo-20240905/main.c

12 lines
81 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;
x = 1;
x = x+3;
2024-09-05 15:39:17 +05:30
while(1);
}