Q. What will be output for the following code?
Code:
#include <stdio.h>
int main(int argc, char *argv[])
{
printf(""%d
"", argc);
return 0;
}
β
Correct Answer: (B)
1