C/C++ 使用假指令 #if 0 / #if 1 … #endif 達到快速註解/啟用程式碼
C/C++ 使用假指令 #if 0 / #if 1 … #endif 達到快速註解/啟用程式碼
線上執行:http://www.tutorialspoint.com/compile_c_online.php
#include <stdio.h>
int main()
{
#if 0
printf(“#if…test\n”);
#endif
printf(“hello world\n”);
return 0;
}