MIPI_BaseC_WebinarFRTK/06_Lecture06/00_getchar_putchar_p5.c

10 lines
112 B
C
Raw Permalink Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
int main()
{
char c;
while( (c=getchar())!='.')
putchar(c);
return 0;
}