|
Generated by UTF-8 version of diff2html.pl © Yves Bailly, MandrakeSoft S.A. 2001, Ryohei Morita 2007 diff2html.pl is licensed under the GNU GPL. |
../01-01/01-01-HelloESYS-NotSoGood.c | 01-02-HelloESYS-Better.c | |||
---|---|---|---|---|
13 lines 388 bytes Last modified : Thu Dec 26 06:39:21 2013 |
16 lines 414 bytes Last modified : Thu Dec 26 06:40:06 2013 |
|||
1 | // Keisanki Joron 2 (Introduction to Computing II) | 1 | // Keisanki Joron 2 (Introduction to Computing II) | |
2 | // Dept. of Engineering Systems, University of Tsukuba | 2 | // Dept. of Engineering Systems, University of Tsukuba | |
3 | // [UTF-8 / Unix] | 3 | // [UTF-8 / Unix] | |
4 | // 計算機序論2・実習 (筑波大学工学システム学類) | 4 | // 計算機序論2・実習 (筑波大学工学システム学類) | |
5 | 5 | |||
6 | // 2013/12/25a kameda[at]iit.tsukuba.ac.jp | 6 | // 2013/12/24a kameda[at]iit.tsukuba.ac.jp | |
7 | // 2011/11/22a kameda[at]iit.tsukuba.ac.jp | 7 | // 2011/11/22a kameda[at]iit.tsukuba.ac.jp | |
8 | // 01.01 ぞんざいなHello ESYS | 8 | // 01.02 上品なHello ESYS | |
9 | 9 | |||
10 | main(){ | 10 | #include <stdio.h> | |
11 | printf("Hello, ESYS folks (This coding is very bad).\n"); | 11 | ||
12 | int main(int argc, char *argv[]){ | |||
13 | printf("Hello, ESYS folks.\n"); | |||
14 | return 0; | |||
12 | } | 15 | } | |
13 | 16 |