fork(1) download
  1. #include<stdio.h>
  2.  
  3. char* f() {
  4. char *p = "INDIA";
  5. return p;
  6. }
  7.  
  8. int main() {
  9.  
  10. char *p;
  11. p = f();
  12. printf("%s",p);
  13. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
INDIA