# include
void main()
{
/* 说明本文件将要使用其它文件中的函数 */
extern int multiply();
extern int sum();
int a, b;
int result;
printf("Please input a and b: ");
scanf("%d, %d", &a, &
# include
void main()
{
/* 说明本文件将要使用其它文件中的函数 */
extern int multiply();
extern int sum();
int a, b;
int result;
printf("Please input a and b: ");
scanf("%d, %d", &a, &
/*
* GENESIS Copyright (c) 1986, 1990 by John J. Grefenstette
* This program may be freely copied for educational
* and research purposes. All other rights reserved.
*
* file: extern
#include "common.h"
//-----------------------------------------------------------------------
extern bit menu_brush_flag;
extern bit set_date_flag;
extern bit set_camera_flag;
extern bit set_came
/*
* extern.h : declare all the extern variables and extern functoins used in user.c
*
* Copyright 2000 Xu Xianghua Department of Engineering Mechanichs. All Rights Reserved.
*/
#ifndef _EXT