2013年3月11日 星期一
程式語言 Programming Language - String
程式語言 programming language 中的 "String" 是指 : "a sequence of zero or more characters"
C 語言 - Statement
Statement: an instruction to do something
例:
printf("hello, world!\n");
the "f" in printf stands for "format"
例:
printf("hello, world!\n");
the "f" in printf stands for "format"
從 Scratch 轉換到 C 語言 - first C program
#include <stdio.h>
int main(void)
{
printf("hello, world!\n");
return 0;
}
int main(void)
{
printf("hello, world!\n");
return 0;
}
哈佛 CS50 筆記
CS50 Scribe Notes: (linked on lectures page)
a canonical set of notes written by a TA
snarky footnotes at the bottom
a canonical set of notes written by a TA
snarky footnotes at the bottom
2013年3月10日 星期日
訂閱:
文章 (Atom)