I am writing a program in which I am initializing a char array as follows
char array[28] = "\19TTTxxxxxxx Protocol\x00\x00\x00\x00\x00\x00\x00\x00";
But the above statement gives a warning that "initializer string too long ". But when I change it to \20, it doesn't give the warning.
Can someone explain whats going on here?