GitDemo-20240905/main.c

12 lines
80 B
C

//Initial version
void main()
{
int x = 0;
x = 2;
x = x+3;
while(1);
}