Question:What will be output of the following c program?#include<stdio.h> int main(){ int main = 80; printf("%d",main); return 0; }
#include<stdio.h> int main(){ int main = 80; printf("%d",main); return 0; }
A 80 B 0 C Garbage value D Compilation error E None of these
+ AnswerA
+ ExplanationVariable name can be main.
+ Report