Showing posts with label variables. Show all posts
Variable stored in memory

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

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