|
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-02/01-02-HelloESYS-Better.c | 01-03-HelloESYS-Full.c | |||
---|---|---|---|---|
16 lines 414 bytes Last modified : Thu Dec 26 06:40:06 2013 |
19 lines 564 bytes Last modified : Thu Dec 26 06:40:50 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/24a 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.02 上品なHello ESYS | 8 | // 01.03 至極丁寧なHello ESYS | |
9 | 9 | |||
10 | #include <stdio.h> | 10 | #include <stdio.h> | |
11 | 11 | |||
12 | int main(int argc, char *argv[]){ | 12 | int main(int argc, char *(argv[])){ | |
13 | printf("Hello, ESYS folks.\n"); | 13 | int returnstatus = 0; | |
14 | ||||
15 | returnstatus = printf("Hello, ESYS folks.\n"); | |||
16 | printf("Return Status = %d. (What's this? See \"man 3 printf\" or ask google...)\n", returnstatus); | |||
14 | return 0; | 17 | return 0; | |
15 | } | 18 | } | |
16 | 19 |