Hello world! 1 Comment / Informática / By admin Here it is a simple Hello, World source code in C and C++ languages: C Version: #include<stdio.h>main(){printf(“Hello, World! n”);} C++ Version: #include<iostream>using namespace std;main(){cout << “Hello, World” << endl;}
Comments are closed.