MIPI_BaseC_WebinarFRTK/06_Lecture06/01_getchar_putchar_2_p6.c
2024-11-13 09:22:28 +03:00

14 lines
464 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include <stdio.h>
int main ()
{
char character;
puts("Введите символ, символ точки - выход('.'):");
do
{
character = getchar(); // считать введённый со стандартного потока ввода символ
putchar (character); // вывести этот символ
} while (character != '.'); // пока введенный символ не точка
return 0;
}