Comment on the output of the following C code.
#include <stdio.h>
#include "test.h"
#include "test.h"
int main()
{
//some code
}
#include <stdio.h>
#include "test.h"
#include "test.h"
int main()
{
//some code
}A. True
B. Compile time error
C. False
D. Depends on the compiler
Answer: Option B

Join The Discussion