What will be the output of the following C code?
#include<stdio.h>
#pragma GCC poison printf
main()
{
printf("example");
return 0;
}
#include<stdio.h>
#pragma GCC poison printf
main()
{
printf("example");
return 0;
}A. error is thrown
B. example is printed
C. warning but no error
D. pleexam is printed
Answer: Option A

Join The Discussion