Question:What will be output of the following c program?#include<stdio.h> int main(){ int _=5; int __=10; int ___; ___=_+__; printf("%i",___); return 0; }
#include<stdio.h> int main(){ int _=5; int __=10; int ___; ___=_+__; printf("%i",___); return 0; }
A 5 B 10 C 15 D Compilation error E None of these
+ AnswerC
+ ExplanationVariable name can have only underscore.
+ Report