Example & Tutorial understanding programming in easy ways.

print hello world without using semicolon in C++


program:

#include < iostream>
using namespace std;
int main()
{
if(cout<<"Hello world")
{
}
return 0;
}


output-

Hello world




Read More →