Is it a necessary condition that a cstring should have a null-character as the last element? If yes, then the following character type array is not a cstring -- correct?
char myData[] = {0x31, 0x32}; //{'1', '2'};
Is it a necessary condition that a cstring should have a null-character as the last element? If yes, then the following character type array is not a cstring -- correct?
char myData[] = {0x31, 0x32}; //{'1', '2'};