C言語

構文
while(条件式){some code}

サンプルコード

#include <stdio.h>int main(){ int i; i=5; while(i < 10){ print ...

C言語

構文
戻り値の型 関数名(引数の型);
サンプルコード

#include <stdio.h>/* 関数のプロトタイプ宣言 戻り値なし*/void funcA(void);/* 関数のプロトタイプ宣言 ...

C言語

構文
戻り型 関数名(型 引数1,型 引数2)
サンプルコード

#include <stdio.h> int sampleFunc(int x, int y){ return x -y;} int m ...

C言語

使用例

#include <stdio.h>/* グローバル変数 */int cftA=120; void func(){/* 関数のローカル変数 */int cftB=140; printf("function p ...

C言語

構文
void 関数名(型 引数1,型 引数2);

サンプルコード

#include <stdio.h>void testfunc(int x, int y){/* 変数の宣言 */int res ...

C言語

構文
main() {
void 関数名();
}

サンプルコード

#include <stdio.h> void testfunc(void){ printf("this is ...

C言語

構文
for (初期化;条件式;変化式){some code}
サンプルコード

#include <stdio.h> int main(void){ int i;/* 繰り返し処理 */for(i=0 ...

C言語

構文

switch(条件式){ case 数値1://some code break; case 数値2://some code break; default://some code break;}

サンプルコード

# ...

C言語

説明
atofで文字列をfloat型の数値に変換
サンプルコード

#include <stdio.h>#include <stdlib.h>int main(void) { char st ...

C言語

構文
int atoi( const char *str );
strの文字列をint型数値に変換し、その値を返します。
サンプルコード

#include <stdio.h>#include ...

C言語

説明
\n 改行
\r 行頭
\t タブ
\’ シングルクォーテーション
\” ダブルクォーテーション
\\ バックスラッシュ(\)
\? クエスチョンマ ...

C言語

構文
printf(“文字列”);

サンプルコード

#include <stdio.h>int main(void){ printf("study it skill in ...

C言語

書式
char 配列名= "山田テスト"; printf("%s\n", cft); return 0;}

実行結果
山田テスト

C言語,Windows10

構文
演算子%:余りを計算
変数名%2 ==0 偶数
使用例

#include <stdio.h> int main(void){ int n; printf("please enter nu ...

C言語

構文
enum 列挙名 {some code};
enum 列挙名 変数名
switch(変数名){
case 列挙の要素:xxx
}

使用例

#include <std ...

C言語

構文
enum 列挙名{
変数1=初期値,変数2
};
使い方
enum 列挙名 変数名

使用例

#include <stdio.h> enum DAY{ MON= ...

C言語

使用例

#include <stdio.h>int main(void){ int x, y, result, kk, temp; printf("自然数を入力\n"); printf("自然数1: "); scan ...

C言語,Windows10

構文
enum 列挙名 {
some code
}変数名;

使用例

#include <stdio.h> enum DAY{ MON=1, TUE, WED, THU, FRI, ...