Question: 5) Consider the following C program. #include int main(int argc, char* argv[]) { } printf(%s %s %s , *argv, (*(argv+1)) + 2, * (argv+2));
5) Consider the following C program. #include int main(int argc, char* argv[]) { } printf("%s %s %s ", *argv, (*(argv+1)) + 2, * (argv+2)); return 0; If this code is executed using the following line, what will be the output? > ./program1 -n5 abc
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
