C言語では、if、for、whileなどの直後の式などを括弧で囲まなくてはいけない。 Pythonでは、括弧で囲う必要なし。C言語 if (data == 123) { printf("OK\n"); } Python if data == 123: print("OK") 文C言語Python if if-elseelseの処理にif文を続けて書ける本当なら { } で囲ってイン...
Register as a new user and use Qiita more conveniently You get articles that match your needs You can efficiently read back useful information You can use dark theme What you can do with signing up Sign upLogin Comments No comments Let's comment your feelings that are more than good ...
int main(void) { char *str = "aa,bb,cc,dd"; /* 分離する文字列 */ char delim[] = ","; /* 区切り文字 */ char *token; /* 分離後の文字列を指すポインタ */ /* 文字列を分離 */ token = strtok(str, delim); /* 文字列が分離できなくなるまでstrtokを実行 */ while (token...
char *a = ""; int main(void) { while(1) { if(*a == (char) 0xc3) break; a--; } char b = *a; // 見つけた後の処理 return 0; } 見つけた後はまず h を出力する必要があるので、必要なヘッダファイルをincludeします。 その後、 0xc3 とh のASCIIコードとの差を計算し...