✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Что будет записано в файл, если ввести значение А=66
int main()
{ FILE *f;
f=fopen("ttt.txt","w");
int A;
scanf("%d",&A);
fputc(A,f);
fclose(f);
return 0;
}
Выберите один ответ: