11 lines
153 B
C
11 lines
153 B
C
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
int main() {
|
||
|
char name[50];
|
||
|
|
||
|
scanf("Test: %s", name);
|
||
|
printf("Hello, %s", name);
|
||
|
return 0;
|
||
|
}
|