•
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 |
In C++:
1 2 3 4 5 6 7 | #include <iostream> using namespace std; int main () { cout< <"Happy Programmer Day!!!"<<endl; return 0; } |
