Q. What will be output for the following code?
Code:#include <stdio.h>
int main(int argc, char *argv[])
{
while (*argv != NULL)
printf(""%s
"", *(argv++));
return 0;
}
β
Correct Answer: (D)
./a.out