ホームページ  >  記事  >  バックエンド開発  >  C プログラミングに関する興味深い事実

C プログラミングに関する興味深い事実

WBOY
WBOY転載
2023-09-06 12:41:051404ブラウズ

C プログラミングに関する興味深い事実

ここでは、C プログラミングに関する興味深い事実をいくつか見ていきます。次のように。

  • 一部の switch ステートメントの case ラベルを if-else ステートメント内に配置できる場合があります。

#include <stdio.h>
main() {
   int x = 2, y = 2;
   switch(x) {
      case 1:
         ;
         if (y==5) {
            case 2:
               printf("Hello World");
         }
         else case 3: {
            //case 3 block
         }
   }
}

出力

Hello World
  • 配列[インデックス]はインデックス[配列]と書くことができます。その理由は、配列要素がポインター演算を使用してアクセスされるためです。 array[5] の値は *(array 5) です。 5[配列]のように順序が逆の場合は*(5配列)と同じです。

#include <stdio.h>
main() {
   int array[10] = {11, 22, 33, 44, 55, 66, 77, 88, 99, 110};
   printf("array[5]: %d</p><p>", array[5]);
   printf("5[array]: %d</p><p>", 5[array]);
}

出力

array[5]: 66
5[array]: 66
  • 角括弧 [,] の代わりに <: :> を使用し、角括弧 [,] の代わりに を使用できます。大きな括弧{,}。
  • ul>

    Example

    #include <stdio.h>
    main() <%
    int array<:10:> = <%11, 22, 33, 44, 55, 66, 77, 88, 99, 110%>;
    printf("array[5]: %d</p><p>", array<:5:>);
    %>

    Output

    array[5]: 66
    • いくつかの奇妙な場所で #include を使用できます。ここで、「The Quick Brown Fox Jumps Over The Lazy Dog」という行を含むファイル abc.txt について考えてみましょう。 printf ステートメントの後にファイルを含めると、ファイルの内容を出力できます。

    #include <stdio.h>
    main() {
       printf
       #include "abc.txt" ;
    }

    出力

    The Quick Brown Fox Jumps Over The Lazy Dog
    • scanf() で %*d を使用すると、入力を無視できます。

    #include <stdio.h>
    main() {
       int x;
       printf("Enter two numbers: ");
          scanf("%*d%d", &x);
       printf("The first one is not taken, the x is: %d", x);
    
    }

    出力

    Enter two numbers: 56 69
    The first one is not taken, the x is: 69

以上がC プログラミングに関する興味深い事実の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はtutorialspoint.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。