1.

What will be the output of the following C code (run without any command line arguments)?
#include <stdio.h>
int main(int argc, char *argv[])
{
printf("%s n", argv[argc]);
return 0;
}

A. Depends on compiler
B. Compilation Error
C. Executable file name
D. Segmentation fault/code crash
E. None of these
Answer» E. None of these


Discussion

No Comment Found