在這裡我們將看到一些關於 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
#陣列[index]可以寫成index[array]。原因是數組元素是使用指標算術存取的。 array[5] 的值為 *(array 5)。如果像 5[array] 這樣的順序相反,那麼也和 *(5 array) 一樣。
#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。這裡讓我們考慮文件 abc.txt 中包含「The Quick Brown Fox Jumps Over The Lazy Dog」這一行。如果我們在 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中文網其他相關文章!