✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Determine the exact text printed to the standard output stream by the following code fragment:
for (int i = 0; "representation"[i]; ++i) {
fputc("representation"[i] - 'a' + 'A', stdout);
}