Well, usually when we learn computer programming languages, the first program we will probably write is a simple program to display “Hello World“. Just found a website displaying 206 ways of using different programming languages to display “Hello World”.
Some use just 1 line of programming code, while others some might use up to 100 lines of codes to do the same thing. For non IT literate readers, you may have a look of those codes, and probably you will have an idea how long will be a normal computer application you are using in your PC.
As for computer programmers, you will feel familiar with some of the codes there, such as :-
[php]< ?php
// Hello World in PHP
echo 'Hello World!';
?>[/php]
[java]// Hello World in Java
class HelloWorld {
static public void main( String args[] ) {
System.out.println( “Hello World!” );
}
}[/java]
[cpp]// Hello World in C++
#include
main()
{
cout < < "Hello World!" << endl;
return 0;
}[/cpp]
Hope you enjoy the link. ![]()
Blogsphere: TechnoratiFeedsterBloglines
Bookmark: Del.icio.usSpurlFurlSimpyBlinkDigg
RSS feed for comments on this post
Best Deal Ads :
Recent Posts :
New Hotmail Coming SoonAMD Chip In New Fujitsu Siemens PC
Sign Board Outside The Court Room Of AMD-Intel Suit?
Firefox 1.0.5 Released !!
.mobi Domain Approved
Skype Plugin For Outlook & IE Toolbars
Weekly Highlights [July 3, 2005 - July 10, 2005]
Beware Of London Bombing Virus & Scam
BitTorrent In Opera Browser
AMD vs Intel Lawsuit Continues ...
Related Posts :
Wh*ck Your Boss !!
Tired of listening to the moan of your boss? Or Have you...
Counter Strike Guinness World Record
We have seen the world record for overclocking of computer...
Is Web Browser A Factor Affecting Security?
Recently a survey conducted by Harris Interactive on behalf of...
10 ways to stop spyware
What you can do:- 1. Know thine enemy. 2. Get off Internet...
World Jump Day
Please note that, i put this article in Funny Link...
















whole week my head only have all this code, macam da vinci’s code. but very interesting though.
LoL …
Hope the codes didn’t drive you nuts.
No doubt programming codes look scary, but once you understand it, it’ll be very interesting.