Examveda
Examveda

What will be the output of the following C code?
#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


This Question Belongs to C Program >> C Preprocessor

Join The Discussion

Related Questions on C Preprocessor