Changes between Version 25 and Version 26 of HowTo/CTutorial
- Timestamp:
- Sep 10, 2010, 9:05:36 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowTo/CTutorial
v25 v26 20 20 21 21 {{{ 22 #!c 22 23 /** 23 24 @brief レジでの販売会計後に呼ばれる関数 … … 53 54 54 55 {{{ 56 #!c 55 57 #include <stdio.h> 56 58 … … 65 67 66 68 {{{ 69 #!c 67 70 #include <stdio.h> 68 71 … … 86 89 87 90 {{{ 91 #!c 88 92 #include <stdio.h> 89 93 … … 158 162 159 163 {{{ 164 #!c 160 165 b = a * 20; 161 166 }}} … … 248 253 249 254 {{{ 255 #!c 250 256 #include <stdio.h> 251 257 … … 274 280 275 281 {{{ 282 #!sh 276 283 $ gcc test.c 277 284 }}} … … 280 287 281 288 {{{ 289 #!sh 282 290 $ ./a.out 283 291 }}} … … 288 296 289 297 {{{ 298 #!sh 290 299 $ gcc -o test test.c 291 300 $ ./test … … 305 314 306 315 {{{ 316 #!c 307 317 #include <stdio.h> 308 318 }}} … … 313 323 314 324 {{{ 325 #!c 315 326 #include <stdio.h> 316 327 … … 327 338 328 339 {{{ 340 #!c 329 341 #include <stdio.h> 330 342 … … 359 371 360 372 {{{ 373 #!c 361 374 #include <stdio.h> 362 375 … … 382 395 383 396 {{{ 397 #!c 384 398 char text[] = "Hello, World!"; /* 文字列なので、配列として扱われる */ 385 399 char letter = ','; /* 単一の値として扱われる */ … … 389 403 390 404 {{{ 405 #!c 391 406 char text[] = "Hello, World!"; 392 407 }}} … … 395 410 396 411 {{{ 412 #!c 397 413 char text[] = { 72, 101, 108, 108, 111, 44, 32, 87, 111, 114, 108, 100, 33, 0 }; 398 414 }}} … … 405 421 406 422 {{{ 423 #!c 407 424 #include <stdio.h> 408 425 … … 449 466 450 467 {{{ 468 #!sh 451 469 $ gcc -o test test.c -lgw32c 452 470 }}} … … 458 476 459 477 {{{ 478 #!c 460 479 char *text = NULL; 461 480 }}} … … 464 483 465 484 {{{ 485 #!c 466 486 letter_num = getline(&text, &length, stdin); 467 487 }}} … … 478 498 479 499 {{{ 500 #!c 480 501 text[letter_num - 1] = '\0'; /* 改行文字を潰す */ 481 502 }}} … … 484 505 485 506 {{{ 507 #!c 486 508 free(text); /* 動的に確保したメモリー領域を開放 */ 487 509 }}}