Question:What will be output of the following c program?#include<stdio.h> int main(){ long int 1a=5l; printf("%ld",1a); return 0; }
#include<stdio.h> int main(){ long int 1a=5l; printf("%ld",1a); return 0; }
A 5 B 51 C 6 D Compilation error E None of these
+ AnswerD
+ ExplanationInvalid variable name. Variable name must star from either alphabet or underscore.
+ Report