Question:What will be output of the following c program?#include<stdio.h> int main(){ int printf=12; printf("%d",printf); return 0; }
#include<stdio.h> int main(){ int printf=12; printf("%d",printf); return 0; }
A 12 B 0 C 5 D Compilation error E None
+ AnswerD
+ ExplanationVariable name cannot be pre defined function of included header file.
+ Report