-
Comment on the output of the following C code.
#include <stdio.h>
#include "test.h"
#include "test.h"
int main()
{
//statements...
}
-
- False
- True
- Depends on compiler
- Compilation Error
- None of these
Correct Option: D
Compilation Error
main.c:2:14: fatal error: test.h: No such file or directory
#include "test.h"
^~~~~~~~
compilation terminated.