▽C言語で始めるWindowsプログラミング ●02/17 22:11 Blocked because of admin action Your system administrator has blocked your computer or device. Please contact the system administrator.
▽科学技術計算ハンドブック(C言語版)ソースリスト ●07/04 10:59 Gone The requested resource /~tog/anna/ is no longer available on this server and there is no forwarding address.Please remove all references to this resource.
▽C言語入門 ●06/23 05:41 C言語入門 #include /* この行は必ず書く、と覚える */int main() /* 次からメインのプログラムですよ */{ /* 中カッコの中がプログラム本体 */ printf(”hello, world¥n”); /* hello, world と表示して改行する */ return 0; /* プログラムを終了します */} /* ちなみにこれは注釈(コメント)です */ #include int main(){ int a, b=2; /* 整数型の aとbを宣言して、bを2で初期化 */ char c; /* 文字型のcを宣言 */ a = 3; /* 代入。変数bのように宣言時に初期化してもよい */ c = ’A’; /* cに、文字Aを代入( cは整数型でなく文字型である) */ printf(”a = %d¥n”, a); /* a = 3 と表示して改行。%