-->
当前位置:首页 > 题库

单选题:关于 C 程序的规范

Luz5年前 (2021-05-10)题库1518
关于 C 程序的规范

按照软件工程的观点,▁▁▁▁▁ 的写法最规范。

@[A](1)

A.
#include <stdio.h>

int main()
{
printf("Hello, world!\n");
return 0;
}


B.
#include <stdio.h>

main()
{
printf("Hello, world!\n");
return 0;
}


C.
#include <stdio.h>

int main()
{
printf("Hello, world!\n");
}


D.
#include <stdio.h>

main()
{
printf("Hello, world!\n");
}





A.
#include <stdio.h>

int main()
{
printf("Hello, world!\n");
return 0;
}


B.
#include <stdio.h>

main()
{
printf("Hello, world!\n");
return 0;
}


C.
#include <stdio.h>

int main()
{
printf("Hello, world!\n");
}


D.
#include <stdio.h>

main()
{
printf("Hello, world!\n");
}




答案:A