Register now or log in to join your professional community.
it prints75. even in case you initialise
char x = 'a';
x=x+10;
printf("%d", x);
will also print the value of a +10
in case of printf("%c", x) will result the output as 'k'
When you run a program It will show the value of x =75
When you run the program, it will give a value of75 and stops.