| 
 | Generated by diff2html.pl © Yves Bailly, MandrakeSoft S.A. 2001, Ryohei Morita 2007 diff2html.pl is licensed under the GNU GPL. | 
| ../01-1/01-1-HelloESYS-NotSoGood.c | 01-2-HelloESYS-Better.c | |||
|---|---|---|---|---|
| 12 lines 344 bytes Last modified : Tue Nov 22 02:23:54 2011 | 15 lines 370 bytes Last modified : Tue Nov 22 02:25:29 2011 | |||
| 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 | // 2011/11/22a kameda[at]iit.tsukuba.ac.jp | 6 | // 2011/11/22a kameda[at]iit.tsukuba.ac.jp | |
| 7 | // 01.1 ぞんざいなHello ESYS | 7 | // 01.2 上品なHello ESYS | |
| 8 | 8 | |||
| 9 | main(){ | 9 | #include <stdio.h> | |
| 10 | printf("Hello, ESYS folks (This coding is very bad).\n"); | 10 | ||
| 11 | int main(int argc, char *argv[]){ | |||
| 12 | printf("Hello, ESYS folks.\n"); | |||
| 13 | return 0; | |||
| 11 | } | 14 | } | |
| 12 | 15 |