myCompiler
English
Deutsch
English
Español
Français
Italiano
日本語
한국어
Nederlands
Polski
Português
Recent
Login
Sign up
Deutsch
English
Español
Français
Italiano
日本語
한국어
Nederlands
Polski
Português
Recent
Login
Sign up
K
@kiyoleticia
words app1
C
13 hours ago
#include <stdio.h> #include <string.h> #include <stdlib.h> /* rand(), strand()を使うため追加*/ #include <time.h> /* time() 変数の種を変えるため追加*/ #define MAX_WORDS 100 typedef struct{ char word[50];
flash cards
C
1 week ago
/*構造体を定義して、単語カード1枚分のデータを表示するだけ*/ #include <stdio.h> #include <string.h> #define MAX_WORDS 100 /*単語カードを最大何枚まで保存できるか*/ typedef struct { char word[50]; /*word:[50]はこの配列が何文字分の箱を持つかを表す*/ char meaning[100]; /*char word[50]はchar1文字を50個並べた箱(配列)を用意するという意
Previous
Next page