✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
What is the output of the following C code?
#include <stdio.h>
int main() {
char str[] = "Hello";
str[0] = 'J';
printf("%s", str);
return 0;
}