⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 debug.c

📁 c pre preocessor directive for debug messages and queue data structure implementation in c++.
💻 C
字号:
//#ifndef DEBUG//#define DEBUG 0//#endif#include <stdio.h>int main(){int i,k;#ifdef DEBUGprintf("Compiled: " __DATE__ " at" __TIME__"\n");printf("This is line %d of file %s\n", __LINE__, __FILE__);#endiffor(i=0;i<20;i++){k=i+13;printf("hello world\n");}exit(0);}//gcc -o debug -DDEBBUG debug.c

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -