1 2 3 4 5 6 7 | main() { int i =0;j=0; if(i && j++) printf("%d..%d",i++,j); printf("%d..%d,i,j); } |
1 2 3 4 5 6 7 | main() { int i =0;j=0; if(i && j++) printf("%d..%d",i++,j); printf("%d..%d,i,j); } |
Be the first to receive the latest updates from Codesdoc by signing up to our email subscription.
there are 4 error .
there are 4 error in this program
There is an error in 3rd and 6th line.
in 3rd line J will be undeclared, because after i is initialized you have put semicolon(;).
in 7th line Double Quotes( ” ) is missing in printf statement.
sorry…
its 6th line