uaveiro-leci/2ano/1semestre/aed/praticas/aula01/hello_x.c

11 lines
153 B
C
Raw Permalink Normal View History

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