Sunday, August 11, 2013

A simple hello world program

Using c++:-


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



Using Java

class hello{
public static void main(String args[]){
System.out.println("Hello World");
}
}

No comments:

Post a Comment

Ads Inside Post