my/c/l2.c

8 lines
120 B
C
Raw Normal View History

2026-06-26 00:33:10 +03:00
#include <stdio.h>
int main() {
char x[100];
printf("Who Sergay ");
scanf("%99s", x);
printf("Sergay: %s\n", x);
}