Suppose the following minimal code:
#include char character = \'c\'; int main (void) { char character = \'b\'; printf(\"The current value
Complement to the other answers:
Try this and you'll understand:
#include char character = 'c'; void Check() { printf("Check: c = %c\n", character); } int main(void) { char character = 'b'; printf("The current value of head is %c\n", character); Check(); }