Advertisement
teknoraver

env

Mar 9th, 2016
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.12 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(int argc, char *argv[], char *env[])
  4. {
  5.     while(*env)
  6.         puts(*env++);
  7.  
  8.     return 0;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement