Welcome to my personal blog. You can read more about the author of the blog ?

Happy Programmer Day!!!

Today, 13th September, I am wishing every programmer in the world Happy Programmer Day!!! :) Technically the 256th day of the year is the Programmer Day. Why 256? That is two to the power eight (eight bits = one byte) and also in binary 256 has 1 and eight 0s. That is the significance of the power eight.  I am going to print this using few programming languages (here eight) I use most frequently:

In C:

1
2
3
4
5
6
7
#include <stdio .h>

int main() {
printf("Happy Programmer Day!!!\n");
return 0;

}

In C++:

1
2
3
4
5
6
7
#include <iostream>
using namespace std;

int main () {
cout< <"Happy Programmer Day!!!"<<endl;
return 0;
}

Read more »

  • Slashdot
  • Digg
  • Diglog
  • Reddit
  • Delicious
  • Google Bookmarks
  • Facebook
  • Faves
  • Share/Bookmark
© 2008 Tanjir's IBlog is powered by WordPress