C程序设计经典900例适合初学者

源代码在线查看: static.c

软件大小: 63 K
上传用户: a1102882595
关键词: 900 C程序设计 初学者
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 
				
				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);
				  }
							

相关资源