#include<stdio.h>
int main(){
int
abcdefghijklmnopqrstuvwxyz123456789=10;
int
abcdefghijklmnopqrstuvwxyz123456=40;
printf("%d",abcdefghijklmnopqrstuvwxyz123456);
return
0;
}
Compilation error
Explanation: Only first 32 characters are significant in variable
name. So compiler will show error: Multiple declaration of identifier
abcdefghijklmnopqrstuvwxyz123456.