Extern variable :predict the output int i=2; int main() { extern int i; clrscr(); printf("%d",i); getch(); return 0; } int i=3; Read More
Variable stored in memory Local/auto variables, which is declared in stack area of memory global variable-->data memory register variable-->CPU registers static... Read More
22 #include main() { char a; a='A'-17; printf("%c",a); return 0; } Output 0 Logic: It's simple logic. ASCII value of cha... Read More