Hi! Is it determined that the C standard compiler always encode characters with the same character excoding? If for example the functions Foo and Bar are compiled by different compilers, is it unambiguous how to interpret the character string in Bar? Does string.h expect a specific string format? void Foo(void) { char myTextString[11] = "stuvxyz"; Bar(myTextString); } void Bar(char* inp) { ...