fork download
  1. #include <stdio.h>
  2.  
  3. int main(int c,char **ma) {
  4. // your code goes here
  5. const char foo[] = "Hello world";
  6. const char *d = foo;
  7. printf("\n%s",d);
  8. printf("\n%s",ma[0]);
  9. printf("\n%d",c);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
Hello world
./prog
1