コンテンツにスキップ

検索結果

(前の20件 | ) (20 | 50 | 100 | 250 | 500 件) を表示
  • #include <stdalign.h> #include <stdio.h> int main(void) { alignas(65536) int i; alignas(256) int j; int k; printf("iのアドレスは%p\n", &i); printf("jのアドレスは%p\n"…
    4キロバイト (451 語) - 2021年8月28日 (土) 07:15
  • 未定義となります。このプラグマのデフォルトの状態はoffです。 <complex.h> では、以下のマクロが定義されます。 complex キーワード_Complexのエイリアス。 _Complex_I "const float _Complex "という型を持ち、虚数単位Iの値、I * I = -1 を持つ定数。 C99 Annex…
    34キロバイト (4,124 語) - 2022年10月10日 (月) 02:08
  • ヘッダー <inttypes.h> は、ヘッダー <stdint.h> をインクルードしホストされた実装によって提供される追加機能で <stdint.h> を拡張します。 <inttypes.h> では、最大幅の整数を操作する関数と数値文字列を最大幅の整数に変換する関数を宣言し、imaxdiv関数が返す値の型である構造体の型…
    16キロバイト (1,820 語) - 2021年9月2日 (木) 08:17
  • <stdio.h> int main(void) { char s[]="1234 3.14 a Hello"; int i; double d; char c; char s2[16]; sscanf(s, "%d %lf %c %15s", &i, &d, &c, &s2); printf("i=%d…
    100キロバイト (13,641 語) - 2024年5月2日 (木) 03:01
  • このページ「C言語/標準ライブラリ/tgmath.h」は、まだ書きかけです。加筆・訂正など、協力いただける皆様の編集を心からお待ちしております。また、ご意見などがありましたら、お気軽にトークページへどうぞ。 ISO/IEC 9899:1999(C99)で標準に追加されたヘッダー<tgmath.h
    16キロバイト (780 語) - 2021年8月28日 (土) 07:54
  • このページ「C言語/標準ライブラリ/float.h」は、まだ書きかけです。加筆・訂正など、協力いただける皆様の編集を心からお待ちしております。また、ご意見などがありましたら、お気軽にトークページへどうぞ。 <float.h>はC言語の標準ヘッダーです。 標準の浮動小数点型のさまざまな制限やパラメータ…
    6キロバイト (546 語) - 2021年8月28日 (土) 07:48
  • h> #include <string.h> int main(void) { char s1[3] = {'a', 'b', 'c'}; char s2[3] = {'d', 'e', 'f'}; printf("\nコピー前のs1の値;"); for (int i = 0; i < 3; i++)…
    32キロバイト (4,628 語) - 2021年12月2日 (木) 23:41
  • _{+}(0)}{dx}}} より, C − + C + = C {\displaystyle C_{-}+C_{+}=C} − i k − C − + i k − C + = − k + C {\displaystyle -ik_{-}C_{-}+ik_{-}C_{+}=-k_{+}C} 双極子の受ける力…
    68キロバイト (13,833 語) - 2024年11月4日 (月) 05:34
  • <assert.h> <complex.h> <ctype.h> <errno.h> <fenv.h> <float.h> <inttypes.h> <iso646.h> <limits.h> <locale.h> <math.h> <setjmp.h> <signal.h> <stdalign.h> <stdarg…
    103キロバイト (8,559 語) - 2024年6月5日 (水) 01:18
  • このページ「C言語/標準ライブラリ/stdlib.h」は、まだ書きかけです。加筆・訂正など、協力いただける皆様の編集を心からお待ちしております。また、ご意見などがありましたら、お気軽にトークページへどうぞ。 ヘッダー <stdlib.h> では、一般的な実用性を持つ5つの型といくつかの関数を宣言し、いくつかのマクロを定義しています。…
    48キロバイト (6,540 語) - 2023年11月24日 (金) 12:28
  • _{i}m_{i}(x_{i}^{2}+y_{i}^{2})} , I x = ∑ i m i ( y i 2 + z i 2 ) {\displaystyle I_{x}=\sum _{i}m_{i}(y_{i}^{2}+z_{i}^{2})} , I y = ∑ i m i ( z i 2 +…
    56キロバイト (12,233 語) - 2024年10月4日 (金) 01:40
  • g % h。 関係演算子 (Relational Operators): 等しい (==), 等しくない (!=), より大きい (>), より小さい (<), 以上 (>=), 以下 (<=) など。 例: x == y, a != b, c > d, e < f, g >= h, i <= j。…
    41キロバイト (5,542 語) - 2024年11月22日 (金) 07:45
  • (Bibliotheca scriptorum Graecorum et Romanorum Teubneriana) C. Iulii Caesaris Commentarii rerum gestarum,  Vol.I  Bellum Gallicum, edidit Otto Seel,  Lipsiae,  In…
    25キロバイト (1,762 語) - 2024年11月13日 (水) 12:28
  • この型は,POSIX のヘッダー "unistd.h" で定義されている ssize_t という名前の符号付きのバリアントを持っている実装もある。GNU C Library では、ssize_t 型は "stddef.h" で定義されており、size_t と同じファイルに存在する。 ptrdiff_t…
    8キロバイト (1,134 語) - 2024年6月5日 (水) 03:32
  • break; 使用例 #include <stdio.h> int main() { for (int i = 0; i < 10; i++) { if (i == 5) { break; } printf("iの値は%dです。\n", i); } return 0; }…
    12キロバイト (1,595 語) - 2024年6月24日 (月) 20:11
  • scriptorum Graecorum et Romanorum Teubneriana) C. Iulii Caesaris Commentarii Rerum Gestarum, edidit Otto Seel, vol.I. Bellum Gallicum, Lipsiae, Teubner, 1961…
    13キロバイト (1,289 語) - 2024年11月18日 (月) 15:03
  • sizeof演算子はオペランドの大きさをバイト数で返す。 //例 sizeof演算子の使用例 #include <stdio.h> int main(void) { char c; int i; float f; double d; long v[100]; printf("charのサイズは%zu。\n"…
    58キロバイト (5,468 語) - 2024年3月3日 (日) 11:14
  • <stdio.h> int main(void) { int i; for (i = 0; i < 10; i++) { printf("%d\n", i); } return 0; } // Allmanスタイル #include <stdio.h> int main(void) { int i; for…
    12キロバイト (1,508 語) - 2024年6月24日 (月) 21:29
  • C/C++ ヘッダ H.264エレメンタリストリーム(H.264 ES)。 ドラムシーケンサーHydrogenの保存形式。xmlベース。 HTML Help Workshop コンテンツ(目次)ファイル。 Microsoft Compiled HTML Help (CHM) を作るためのソースファイルの一つ。…
    1キロバイト (107 語) - 2020年4月4日 (土) 10:23
  • char c = getchar(); // 標準入力から1文字読み込む putchar(c); // 読み込んだ文字を出力 文字列リテラルはダブルクォート"で囲んで表記します。終端に\0(ヌル文字)が自動で付加されます。 char str[] = "Hello"; // str = {'H', 'e'…
    23キロバイト (3,298 語) - 2024年6月11日 (火) 02:36
(前の20件 | ) (20 | 50 | 100 | 250 | 500 件) を表示