So drucken Sie Helloq World in C.

#include<stdio.h>
int main()
{
printf("Hello world");
return 0;
}
Light Lyrebird