Add operations for int x

This commit is contained in:
Abhijit Kshirsagar 2024-09-05 15:45:27 +05:30
parent 161bbd9df4
commit 300b7826f2
1 changed files with 4 additions and 0 deletions

4
main.c
View File

@ -2,6 +2,10 @@
void main()
{
int x = 0;
x = 1;
x = x+3;
while(1);
}