What will be the output of the following C code?
#include <stdio.h>
#include "printf"
void main()
{
printf("hello");
}
#include <stdio.h>
#include "printf"
void main()
{
printf("hello");
}A. hello
B. Error
C. Depends on compiler
D. Varies
Answer: Option B

Join The Discussion