bombaybaba Inactive Contributor Mar 15, 2007 #1 #include<stdio.h> void main() { printf ("Hello world of TechEnclave.\n") } O/P - Hello world of TechEnclave.
#include<stdio.h> void main() { printf ("Hello world of TechEnclave.\n") } O/P - Hello world of TechEnclave.
S samatre Inactive Contributor Mar 16, 2007 #3 #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
#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