What will be the output of the following C code (run without any command line arguments)?
#include
int main(int argc, char *argv[])
{
printf("%s\n", argv[argc]);
return 0;
}
Answer: A
No answer description available for this question.