Question:What will be output of the following c program?#include<stdio.h> int main(){ int ABC=10; printf("%d",abc); return 0; }
#include<stdio.h> int main(){ int ABC=10; printf("%d",abc); return 0; }
A 10 B 0 C 5 D Compilation error E None
+ AnswerD
+ ExplanationVariable name is case sensitive.
+ Report