Hello Techies !

Status
Not open for further replies.

bombaybaba

Inactive
Contributor
#include<stdio.h>
void main()
{
printf ("Hello world of TechEnclave.\n")
}
O/P - Hello world of TechEnclave.
 
#include <iostream>

using namespace std;

//Hello.cpp
------------------------

int main()
{
cout << " Hello BombayBaba and enjoy the company of techies here" << endl;
return 0;
}

g++ Hello.cpp

./a.out
Hello BombayBaba and enjoy the company of techies here
 
Status
Not open for further replies.