fork download
  1. #include <stdio.h>
  2.  
  3. char *ptr = "Pskills.org";
  4. char a =
  5. printf("%c", ++*ptr++);
  6.  
  7. return 0;
  8. }
  9.  
Compilation error #stdin compilation error #stdout 0s 9424KB
stdin
Standard input is empty
compilation info
prog.c:5:6: error: initializer element is not constant
      printf("%c", ++*ptr++);
      ^~~~~~
prog.c:7:2: error: expected identifier or ‘(’ before ‘return’
  return 0;
  ^~~~~~
prog.c:8:1: error: expected identifier or ‘(’ before ‘}’ token
 }
 ^
stdout
Standard output is empty