Update inital value of x

This commit is contained in:
Abhijit Kshirsagar 2024-09-05 15:47:53 +05:30
parent 300b7826f2
commit 0075fbaa11
1 changed files with 2 additions and 2 deletions

4
main.c
View File

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