Saved Bookmarks
| 1. |
puts(argv[0]);(A) prints the name of the source code file.(B) prints argv(C) prints the number of command line arguments.(D) prints the name of the executable code file. |
|
Answer» Correct option - (D) prints the name of the executable code file. Explanation:- argv[0] represent the filename where the executable code of the program is stored. |
|