Showing posts with label ASCII. Show all posts
46

46

#define float char int function(char a) { if(a return function(a+8); printf("%c",a+32); return 0; } int main() { float b='\n...
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