여기서 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[index]는 index[array]로 쓸 수 있습니다. 그 이유는 포인터 연산을 사용하여 배열 요소에 액세스하기 때문입니다. 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!