I have this piece of code,
int i,j,l=0,k=l+4;
l - = k;
j=k+10;
i+=2;
What is the value of i,j,k after the code has been executed.
would i be right to say that k=4;l=3,j=14 and i=1.
int i,j,l=0,k=l+4;
l - = k;
j=k+10;
i+=2;
What is the value of i,j,k after the code has been executed.
would i be right to say that k=4;l=3,j=14 and i=1.
Comment