Question:What will be output of the following c program?#include<stdio.h> int main(){ int goto=5; printf("%d",goto); return 0; }
#include<stdio.h> int main(){ int goto=5; printf("%d",goto); return 0; }
A 5 B 10 C 20 D Compilation error E None
+ AnswerD
+ ExplanationInvalid variable name. goto is keyword in c. variable name cannot be any keyword of c language.
+ Report