ここでは、C プログラミングに関する興味深い事実をいくつか見ていきます。次のように。
#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
#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:>); %>
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
#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 サイトの他の関連記事を参照してください。