Tanjir's IBlog » Page 'Happy Programmer Day!!!'

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;
}


In JAVA:

1
2
3
4
5
public class ProgrammerDay {
public static void main(String[] args) {
System.out.println("Happy Programmer Day!!!\n");
}
}

In Perl:

1
2
3
#!/usr/bin/perl

print "Happy Programmer Day!!!\n";

In Python:

1
2
3
#!/usr/bin/python

print "Happy Programmer Day!!!"

In TCL:

1
2
3
#!/bin/tclsh

puts "Happy Programmer Day!!!\n"

In PHP:

1
2
3
<?php
print "Happy Programmer Day!!!\n";
?>

In Verilog (really HDL):

1
2
3
4
5
6
7
module main;
initial
begin
$display("Happy Programmer Day!!!\n");
$finish;
end
endmodule

One comment to “Happy Programmer Day!!!”

  1. Ami kichu porinai. Dekhe kisu likhte eccha korlo bhablan jai Tanjir’er blog ta re trash kore diye ashi hahahahahahaha nananana a JK

    I like blogs.

    Good one (eventhough I didnt read it)

    tata

Leave a comment

XHTML - You can use:<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

© 2008 Tanjir's IBlog is powered by WordPress