MIPI_BaseC_WebinarFRTK/09_Lecture09/01__p10.c

14 lines
285 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[100]="";
int r;
//~ r=scanf("%[a-z]",s);// считать стр буквы
//~ r=scanf("%[0-9]",s);// считать цифры
r=scanf("%[^\n]",s);// все кроме \n
printf("%s %d\n",s,r);
}