22 ASCII, Datatypes, typecasting., variables #include< stdio.h >main(){char a;a='A'-17;printf("%c",a);return 0;}Output0Logic:It's simple logic. ASCII value of character 'A' is 65.65-17=4848 is ASCII value of '0'. Share this Share on FacebookTweet on TwitterPlus on Google+ Related PostsVariable stored in memoryExtern variable :predict the output22