Hello World Program in C/C++ for Beginners

C/C++ Program for Beginners



#include<iostream>
using namespace std;
int main()

cout << "hello world" << endl;
}

Comments

Popular posts from this blog

Book-Shop Program using C++

Nesting of For Loop in C/C++

Switch statement in C/C++