This commit is contained in:
2023-10-03 12:16:10 +01:00
parent abc01ee776
commit b3554501ed
3 changed files with 39 additions and 0 deletions

11
C7/ex4.c Normal file
View File

@@ -0,0 +1,11 @@
#include <stdio.h>
int main() {
char name[200] = { 0 };
printf("What is your name? ");
scanf("%s", name);
printf("Hello %s\n", name);
}