Home / C Programming / Command Line Arguments :: Discussion

Discussion :: Command Line Arguments

  1. What will be the output of the program in Turbo C?

     #include
    
      int main(int argc, char *argv, char *env[]) 
      {   
          int i;  
          for(i=1; i"%s\n", env[i]);     
        return 0; 
    } 
    

     

  2. A.

    List of all environment variables

    B.

    List of all command-line arguments

    C.

    count of command-line arguments

    D.

    Error: cannot have more than two arguments in main()

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    No answer description available for this question.


Be The First To Comment