Trace out and explain the output of the c-programme
#include
main()
{
int i,j;
if (i&&j++)
printf("%d..%d",i++,j);
printf("%d..%d",i,j);
}
Answers
Answered by
1
here i and j both will have the garbage value.so.it will print those values as the condition will become true.
anudeepnarayanavanam:
I know output but i dont know how it comes
Similar questions