打印“hello world!”不能使用“;”——c语言笔试题

#include <stdio.h>

void main(void)
{
    if (printf("hello world!"))
    {}
}

相关推荐