GitDemo-20240905/main.c

13 lines
90 B
C

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