C programming (f) Final Exam
Categories:
Related Post
C programming (3) VeriablesC programming (3) Veriables
変数と宣言 代入 int a, b; a = 19; b = -20; 変数初期化 int a = 1; int b = 10; […]
C programming (5) operator and operandC programming (5) operator and operand
C言語の特徴(2) 関数型言語 コンピュータに実行してもらう命令はすべて関数の中に記述されている。関数がプログラムの実行単位。いくつかの関数を組み合わせ、コンピュータへ命令をする。最初にコンピュータが実行する関数はmain()に決まっている。 戻り値の型 関数名(引数リスト) { 命令文; } 命令文(Statement) 名札付き文 式文 複合文 選択文 繰り返し文 ジャンプ文 式(Expression) オペランド 演算子 オペランド... トークン(token) コンパイラが認識する最小単位のテキスト、トークン(token) […]
C programming (6) type and conversionsC programming (6) type and conversions
型と型変換 型 int — 整数 double — 浮動小数点数 平均点を求めるプログラム #include <stdio.h> int main(int argc, const char * argv[]) { // […]