Skip to content
Rain Hu's Workspace
Go back

[CS50] Lec 1 - C

Rain Hu

C

#include <stdio.h>

int main(void)
{
    printf("hello, world\n");
}

整合開發環境、編譯器、介面 IDEs, compilers, interfaces

函式、引數、傳回值、變數 Functions, Arguments, Return Values, Variables

printf("Hello, world");
string answer = get_string("What's your name? ");
printf("Hello, world\n");

Share this post on:

Previous
[Java] 面試常見問題
Next
[Java] transient 關鍵字