Advertisement
Patresss

1.2

Sep 2nd, 2014
431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.14 KB | None | 0 0
  1.     void wypisz(void){
  2.         char *tab[]= {"first","second","third", NULL};
  3.         char **p = tab;
  4.         for(; *p!=NULL ; p++)
  5.             printf("%s ",*p);
  6.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement