CS50_Labs/Lab1/hello/hello.c

9 lines
194 B
C
Raw Normal View History

2024-08-09 17:43:54 +00:00
#include <cs50.h>
#include <stdio.h>
int main(void)
{
//asks user for name and says Hello + his name
string name = get_string("What is your name?\n");
printf("hello, %s\n", name);
}