c hello

Solutions on MaxInterview for c hello by the best coders in the world

showing results for - "c hello"
Livia
31 Nov 2020
1#include <stdio.h>
2int main(0)
3{
4	printf("Hello World!\n");
5    return 0;
6}
Alessandra
26 Jul 2018
1#include <stdio.h>
2int main() {
3   
4   printf("Hello, World!");
5   return 0;
6}
7
Ignacio
07 Sep 2017
1int main() {
2printf("Hello World !");
3}