C++ Program to display Hello World [DEVCPP/GCC] Prateek Gupta BASIC Prateek Gupta //Program to display Hello World #include <iostream> using namespace std; int main() { cout<<"HELLO WORLD"; return 0; } Author : Prateek Gupta Share this Google Facebook Twitter More Digg Linkedin Stumbleupon Delicious Tumblr BufferApp Pocket Evernote Related Posts C++ Program to print a string multiple times using goto and labels [DEVCPP/GCC] GOTO STATEMENT The goto statement is used to transfer program control to some other paC++ Program to display the size of different Datatypes [DEVCPP/GCC] SIZEOF OPERATOR This compile time operator is used to determine the size of varC++ Program to sum elements passed through Command Line Arguments [DEVCPP/GCC]COMMAND LINE ARGUMENTS Command Line Arguments are optional string type arguments which cC++ Program to calculate and print the roots of a quadratic equation [DEVCPP/GCC] PROGRAM //Program to calculate and print the roots of a quadratic equation! #include&l