Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Week1-Hello
# Week1-Hello
my week 1 assignment hello.c
10 changes: 10 additions & 0 deletions hello.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
//the library of input and output function
#include <stdio.h>
#include<cs50.h>

int main(void)
{

string name = get_string("what is your name?\n");
printf("hello, %s", name);
}