Archive for August, 2008
C++ in Hindi
How would a simple hello world program look if c++ was written in hindi? Let’s check it out.
First, the code, as it can be written today
#include <iostream>
#include <string>
using namespace std;
int main()
{
string a("Hello World");
cout << a;
return 0;
}
38 comments August 17, 2008