Tchae

cx03.3

Sep 29th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. #include <stdio.h>
  2. // directive d'inclusion
  3. #define str char *
  4. // directive de substitution
  5.  
  6.     int main( int k, const str argv[])
  7. {
  8.     int premier=argv;
  9.     argv+=k;
  10.     while (argv>premier)
  11.         {
  12.             puts( * --argv) ;
  13.         }
  14.     return 0 ;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment