Comment on the output of this C 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: Depends on the compiler
#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: Depends on the compiler
Post a Comment