神奇的hello-world

输出

printf("hello world!\n");

人人尽知傻逼题

#include<stdio.h>
int main()
{
	printf("printf"); 
	putchar('(');
	putchar('"');
	printf("hello world!");
	printf("\\");
	printf("n");
	putchar('"');
	putchar(')');
	putchar(';');
	//printf("hello world!\n");

	return 0;
}

猜你喜欢

转载自blog.csdn.net/qq_43568078/article/details/85042606