fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. char c[7]="GATE2011";
  6. char *p;
  7. p=c+1;
  8. printf("%s",c);
  9. //printf("%d",printf("shubam"));
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 4372KB
stdin
Standard input is empty
stdout
GATE201