C打

関連タイピング
-
ホームポジションが自然と身につく!
プレイ回数71短文60秒 -
Javaプログラミングにおける超入門タイピング練習です.
プレイ回数4498短文英字90秒 -
Vi ( Vim ) コマンド を習得しよう!
プレイ回数3054190打 -
タッチタイピングを本当にマスターしたい方向けの問題です。
プレイ回数8449長文英字366打 -
プログラミングで良く使う英単語、構文のタイピングです!
プレイ回数3317短文英字429打 -
Pythonプログラムを打ちまくる
プレイ回数8053英語長文60秒 -
プレイ回数441英語長文90秒
-
コマンドラインやプログラミング言語のタイピング練習用
プレイ回数2036英語長文90秒
問題文
(#include <stdio.h>)
#include <stdio.h>
(int main(void))
int main(void)
(a+=5;)
a+=5;
(return 0;)
return 0;
(int func(int d,char *p);)
int func(int d,char *p);
(printf(”hello world¥n”);)
printf("hello world\n");
(scanf(”%d”,&a);)
scanf("%d",&a);
(struct person d;)
struct person d;
(unsigned int busy:1;)
unsigned int busy:1;
(#define filename ”test.h”)
#define FILENAME "test.h"
(va_start(ap,ct);)
va_start(ap,ct);
(for(i=0;i<100;i++){)
for(i=0;i<100;i++){
(#ifdef __stdc__)
#ifdef __STDC__
(sp->mem=40;)
sp->mem=40;
(strcpy(ss,”abcde”);)
strcpy(ss,"abcde");
(volatile int wtdt;)
volatile int wtdt;
(typedef int d;)
typedef int d;
(double d[20])
double d[20]
(extern int glb;)
extern int glb;
(static int a[3]={10,5,30};)
static int a[3]={10,5,30};