Week1

48:01 / 1:46:14

#include <stdio.h>

int main(void)
{
    printf("hello, world\n");
}
#include <cs50.h>
#include <stdio.h>

int main(void)
{
    string answer = get_string("What`s your name?\n");
    printf("hello, %s\n", answer );
}