Question:What will be output of the following c program?
#include<stdio.h> int main(){ int abcdefghijklmnopqrstuvwxyz123456789=10; int abcdefghijklmnopqrstuvwxyz123456=40; printf("%d",abcdefghijklmnopqrstuvwxyz123456); return 0; }
A 10
B 40
C 50
D Compilation error
E None of these
+ AnswerD
+ Explanation
+ Report