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

📄 test.c

📁 linux下的C语言开发
💻 C
字号:
/* This is a single line comment *//*  * This is a mult-line * comment. */int main() {    /* A procedure */    int i;      /* Comment / code line */    char foo[10];    strcpy(foo, "abc");         /* String */    strcpy(foo, "a\"bc");       /* String with special character */    foo[0] = 'a';               /* Character */    foo[1] = '\'';              /* Character with escape */    i = 3 / 2;                  /* Slash that's not a commment */    i = 3;                      /* Normal number */    i = 0x123ABC;               /* Hex number */    i = ((1 + 2) *              /* Nested () */         (3 + 4));    {        int j;                  /* Nested {} */    }    return (0);}

⌨️ 快捷键说明

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