my/c/l2.c

8 lines
120 B
C
Raw Normal View History

2026-05-07 11:20:09 +03:00
#include <stdio.h>
int main() {
char x[100];
2026-05-07 14:20:01 +03:00
printf("Who Sergay ");
2026-05-07 11:20:09 +03:00
scanf("%99s", x);
2026-05-07 14:20:01 +03:00
printf("Sergay: %s\n", x);
2026-05-07 11:20:09 +03:00
}