c语言精彩编程百例的源代码

源代码在线查看: extern.c

软件大小: 89 K
上传用户: whyzhao
关键词: c语言 编程 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				# include 
				
				void  main()
				{
					/* 说明本文件将要使用其它文件中的函数 */
					extern int multiply();
					extern int sum();
				
				    int a, b;
					int result;
					printf("Please input a and b: ");
					scanf("%d, %d", &a, &b);
					result = multiply(a, b);
					printf("The result of multiply is: %d", result);
					result = sum(a, b);
					printf("\nThe result of sum is: %d\n", result);
				
				}			

相关资源