STATIC.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:0k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. void print_reportcard(int printer_number)
  3.  {
  4.    static int student_id = 100;
  5.    printf("Printing report card for student %dn", student_id);
  6.    student_id++;
  7.    // Other statements here
  8.  }
  9.  void main(void)
  10.   {
  11.     print_reportcard(1);
  12.     print_reportcard(1);
  13.     print_reportcard(1);
  14.   }