Changes between Version 25 and Version 26 of HowTo/CTutorial


Ignore:
Timestamp:
Sep 10, 2010, 9:05:36 AM (14 years ago)
Author:
村山 俊之
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowTo/CTutorial

    v25 v26  
    2020
    2121{{{
     22#!c
    2223/**
    2324@brief  レジでの販売会計後に呼ばれる関数
     
    5354
    5455{{{
     56#!c
    5557#include <stdio.h>
    5658
     
    6567
    6668{{{
     69#!c
    6770#include <stdio.h>
    6871
     
    8689
    8790{{{
     91#!c
    8892#include <stdio.h>
    8993
     
    158162
    159163{{{
     164#!c
    160165    b = a * 20;
    161166}}}
     
    248253
    249254{{{
     255#!c
    250256#include <stdio.h>
    251257
     
    274280
    275281{{{
     282#!sh
    276283$ gcc test.c
    277284}}}
     
    280287
    281288{{{
     289#!sh
    282290$ ./a.out
    283291}}}
     
    288296
    289297{{{
     298#!sh
    290299$ gcc -o test test.c
    291300$ ./test
     
    305314
    306315{{{
     316#!c
    307317#include <stdio.h>
    308318}}}
     
    313323
    314324{{{
     325#!c
    315326#include <stdio.h>
    316327
     
    327338
    328339{{{
     340#!c
    329341#include <stdio.h>
    330342
     
    359371
    360372{{{
     373#!c
    361374#include <stdio.h>
    362375
     
    382395
    383396{{{
     397#!c
    384398    char text[] = "Hello, World!";  /* 文字列なので、配列として扱われる */
    385399    char letter = ',';              /* 単一の値として扱われる */
     
    389403
    390404{{{
     405#!c
    391406    char text[] = "Hello, World!";
    392407}}}
     
    395410
    396411{{{
     412#!c
    397413    char text[] = { 72, 101, 108, 108, 111, 44, 32, 87, 111, 114, 108, 100, 33, 0 };
    398414}}}
     
    405421
    406422{{{
     423#!c
    407424#include <stdio.h>
    408425
     
    449466
    450467{{{
     468#!sh
    451469$ gcc -o test test.c -lgw32c
    452470}}}
     
    458476
    459477{{{
     478#!c
    460479    char *text = NULL;
    461480}}}
     
    464483
    465484{{{
     485#!c
    466486    letter_num = getline(&text, &length, stdin);
    467487}}}
     
    478498
    479499{{{
     500#!c
    480501    text[letter_num - 1] = '\0';    /* 改行文字を潰す */
    481502}}}
     
    484505
    485506{{{
     507#!c
    486508    free(text); /* 動的に確保したメモリー領域を開放 */
    487509}}}