C programming Part II
What is output by the following code?
char str[] = "The problem is easy";
str[11] = '\0';
printf("%s\n", str);
What is output by the following code?
char str[] = "The problem is easy";
str[11] = '\0';
printf("%s\n", str);