MIPI_BaseC_WebinarFRTK/09_Lecture09/00_st_scanf_printf_p7.c

10 lines
261 B
C
Raw Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
int main(int argc, char **argv)
{
char s[10];
scanf("%s",s); // считать строку до первого пробельного символа или \n
printf("%s",s); // напечатать строку
return 0;
}