fork download
  1. #include <stdio.h>
  2. int main () {
  3. char *names [] = {"zabe","program","hobby"};
  4. printf("im %s i like to %s and thats my %s", names[0],names[1],names[2]);
  5. return 0;
  6. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
im zabe i like to program and thats my hobby