经典编程900例(C语言)

源代码在线查看: static.c

软件大小: 148 K
上传用户: ABC258369000
关键词: 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);
				  }
							

相关资源