fork download
  1. #include<stdio.h>
  2. #define Mahesh “PUNE”
  3. int main()
  4. {
  5. printf(“Mahesh”);
  6. return 0;
  7. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function 'main':
prog.c:5:1: error: stray '\342' in program
 printf(“Mahesh”);
 ^
prog.c:5:1: error: stray '\200' in program
prog.c:5:1: error: stray '\234' in program
prog.c:5:1: error: stray '\342' in program
prog.c:5:1: error: stray '\200' in program
prog.c:5:1: error: stray '\234' in program
prog.c:5:1: error: stray '\342' in program
prog.c:5:1: error: stray '\200' in program
prog.c:5:1: error: stray '\235' in program
prog.c:5:1: error: stray '\342' in program
prog.c:5:1: error: stray '\200' in program
prog.c:5:1: error: stray '\235' in program
prog.c:2:19: error: 'PUNE' undeclared (first use in this function)
 #define Mahesh “PUNE”
                   ^
prog.c:5:11: note: in expansion of macro 'Mahesh'
 printf(“Mahesh”);
           ^
prog.c:2:19: note: each undeclared identifier is reported only once for each function it appears in
 #define Mahesh “PUNE”
                   ^
prog.c:5:11: note: in expansion of macro 'Mahesh'
 printf(“Mahesh”);
           ^
stdout
Standard output is empty