RE: What is the output of the program?int n=f,m...
Hi
Here f should ' f ' o/w compiler will give error as it will be considered as a variable........ it will assign the ASCII value of 'f ' to n i.e. 102 ......... then the values of m and n will be incremented by 1 so the output should be ................ 103 1
RE:
What is the output of the program?
int n=f,m;
n==m++;
m==++n;
printf(n, m);
n m++.......so the ascii value of m will increment and it will become n so now n nnext step is m ++n. similarly here ascii value of n will increment .soans is m om o n n