C语言 警告:未找到使用betty兼容语法的函数main的说明[已关闭]

gzszwxb4  于 2023-03-01  发布在  其他
关注(0)|答案(1)|浏览(98)

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
brgchamk

brgchamk1#

在包含库之后,您应该包含程序的描述,如下所示:

#include <stdio.h>

/**
 * main - Entry point
 * 
 * Description: 'the program's description'
 * @parameter: describe the parameter
 * 
 * Return: Always 0 (Success)
 */

int main(void)
{
    Code goes here
}

相关问题