第 12 章 存储类别、链接和内存管理(存储类别)
2018-06-18 03:46:40来源:未知 阅读 ()
1 /*---------------------------- 2 parta.c -- 不同的存储类别 3 ----------------------------*/ 4 5 #include <stdio.h> 6 7 void report_count(); 8 void accumulate(int k); 9 10 int count = 0; //文件作用于,外部链接 11 12 int main() 13 { 14 int value; //自动变量 15 register int i; //寄存器变量 16 17 printf("Enter a positive integer (0 to quit): "); 18 19 while (scanf("%d", &value) == 1 && value > 0) 20 { 21 ++count; //使用文件作用域变量 22 23 for (i = value; i >= 0; --i) 24 accumulate(i); 25 26 printf("Enter a positive integer (0 to quit): "); 27 } 28 29 report_count(); 30 31 return 0; 32 } 33 34 void report_count() 35 { 36 printf("Loop executed %d times\n", count); 37 }
1 /*---------------------------- 2 partb.c -- 程序的其余部分 3 与 parta.c 一起编译 4 ----------------------------*/ 5 #include <stdio.h> 6 7 extern int count; //引用式声明,外部链接 8 9 static int total = 0; //静态定义,内部链接 10 11 //void accumulate(int k); //函数原型 12 13 void accumulate(int k) // k 具有块作用域,无连接 14 { 15 static int subtotal = 0; //静态,无连接 16 17 if (k <= 0) 18 { 19 printf("loop cycle: %d\n", count); 20 printf("subtotal: %d; total: %d\n", subtotal, total); 21 subtotal = 0; 22 } 23 else 24 { 25 subtotal += k; 26 total += k; 27 } 28 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- C++ 共用体 2020-06-05
- STM32F103驱动M24256 256k存储芯片进行读写 2020-05-28
- C++98/11/17表达式类别 2020-05-23
- C++ 自动变量 2020-05-10
- C++ 存储持续性 2020-05-10
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash