burim:cs50
Week1
48:01 / 1:46:14
- New language C
- hello.c
#include <stdio.h>
int main(void)
{
printf("hello, world\n");
}
- string.c
#include <cs50.h>
#include <stdio.h>
int main(void)
{
string answer = get_string("What`s your name?\n");
printf("hello, %s\n", answer );
}
burim/cs50.txt · Last modified: 2020/06/07 22:07 by burim
