📄 max.c
字号:
/*-*//******************************************************** * Question: * * Why does the following program generate a * * warning when we compile it to the effect that * * "counter may be used before set?" * * * * After all, we set it in the for loop, right? * ********************************************************//*+*//* warning, spacing is VERY important */#include <stdio.h>#define MAX =10int main(){ int counter; for (counter =MAX; counter > 0; --counter) printf("Hi there\n"); return (0);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -