This repository has been archived on 2023-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
VSMechatronics/Exercises/C7/ex4.c

12 lines
144 B
C
Raw Normal View History

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