static.c
来自「不错书对C++/C程序员很有用的大家不要错过.」· C语言 代码 · 共 19 行
C
19 行
#include <stdio.h>
void print_reportcard(int printer_number)
{
static int student_id = 100;
printf("Printing report card for student %d\n", student_id);
student_id++;
// Other statements here
}
void main(void)
{
print_reportcard(1);
print_reportcard(1);
print_reportcard(1);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?