Advertisement
dllbridge

Untitled

Dec 13th, 2023
663
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.34 KB | None | 0 0
  1.  
  2.  
  3. #include    <stdio.h>
  4. #include   <stdlib.h>
  5.  
  6.  
  7.  
  8.  
  9. ////////////////////////////////////////////////////
  10. int main(int argc, char **argv)                   //
  11. {
  12.    
  13.  
  14.     printf("argc = %d\n", argc);
  15.    
  16.     for(int i = 0; i < argc; i ++)
  17.     {
  18.        
  19.        printf("%d) argv[%d] = %s\n", i, i, argv[i]);    
  20.     }
  21.  
  22.     system("pause");
  23. }
  24.  
  25.  
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement