fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char *ptrary[3];
  5. ptrary[0]="dog";
  6. ptrary[1]="lion";
  7. ptrary[2]="tiger";
  8.  
  9. for(int i=0; i<3; i++)
  10. printf("%5s\n",ptrary[i]);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5524KB
stdin
Standard input is empty
stdout
  dog
 lion
tiger