10 lines
194 B
C
10 lines
194 B
C
#include <cs50.h>
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
string name = get_string("What's your name? ");
|
|
// %s = percentage i just operator and "s"is for string.
|
|
printf("Hello, %s\n", name);
|
|
}
|