fork download
  1. #include<stdio.h>
  2. int main()
  3. {   
  4. int m=20, n=30, k=40;
  5. if(m>n)
  6. if(n<k)
  7. printf("%d", ++k);
  8. else printf("%d", ++n);
  9. printf("%d\n", m++);
  10. return 0;
  11.  
  12.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function ‘main’:
prog.c:3:2: error: stray ‘\302’ in program
 {   
  ^
prog.c:3:3: error: stray ‘\240’ in program
 {   
   ^
prog.c:3:5: error: stray ‘\302’ in program
 {   
     ^
prog.c:3:6: error: stray ‘\240’ in program
 {   
      ^
prog.c:5:3: warning: suggest explicit braces to avoid ambiguous ‘else’ [-Wparentheses]
 if(m>n)
   ^
prog.c:10:1: error: expected declaration or statement at end of input
 return 0;
 ^~~~~~
stdout
Standard output is empty