虽然通过了,但感觉还是有问题,应该把双引号也打印出来吧!
#include <stdio.h>
int main()
{
int ret = printf("Hello world!");
printf("\n%d",ret);
}