对于大学,我需要使用提供的模板创建一个基本的桌面计算器。我已成功完成大部分工作,但第9行出现此错误消息(iScreenSetup();
:
" [警告]数据定义没有类型或存储类[默认启用]"
任何提示?
#include "stdio.h"
#include "conio.h"
#include "stdlib.h"
#include "string.h"
/* Prototypes */
iScreenSetup();
iDataCapture();
iProcessData();
iReport();
iExit();
/* Declare and initialise global variables */
float fNum1 = 0.0;
float fNum2 = 0.0;
float fAns = 0.0;
int iOption = 0;
int main(void)
{
/* Set up the screen */
iScreenSetup();
/* Prompt the user and capture the data */
iDataCapture();
/* Process the data */
iProcessData();
/* Generate the report */
iReport();
/* Exit routine */
iExit();
} /* End of main */
答案 0 :(得分:7)
您的原型缺少返回类型。如果不返回任何内容,那将是void
。
/* Prototypes */
void iScreenSetup();