extern.c
上传用户:bjtelijie
上传日期:2010-01-01
资源大小:87k
文件大小:0k
源码类别:

数学计算

开发平台:

Visual C++

  1. # include <stdio.h>
  2. void  main()
  3. {
  4. /* 说明本文件将要使用其它文件中的函数 */
  5. extern int multiply();
  6. extern int sum();
  7.     int a, b;
  8. int result;
  9. printf("Please input a and b: ");
  10. scanf("%d, %d", &a, &b);
  11. result = multiply(a, b);
  12. printf("The result of multiply is: %d", result);
  13. result = sum(a, b);
  14. printf("nThe result of sum is: %dn", result);
  15. }