- 已关闭**。此问题需要details or clarity。当前不接受答案。
- 想要改进此问题?**添加详细信息并通过editing this post阐明问题。
9个月前关闭。
此帖子在6个月前已编辑并提交审核,未能重新打开帖子:
原始关闭原因未解决
Improve this question
我正在学习编程语言C,并使用Betty的编码风格编写Cgithub.com/holbertonschool/betty),
我一直收到这个语法警告。
#include <stdio.h>
int main(void)
{
int a;
printf("\n Enter: ");
scanf("%d", &a);
return (0);
}
total: 0 errors, 1 warnings, 8 lines checked
c:2: warning: no description found for function main
1条答案
按热度按时间brgchamk1#
在包含库之后,您应该包含程序的描述,如下所示: