Created
April 9, 2012 09:51
-
-
Save sandeepraju/2342605 to your computer and use it in GitHub Desktop.
helloworld
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This file is a part of 'helloworld' project | |
// Copyright (c) 2012 by Sandeep Raju <[email protected]> | |
// Title : Program to print 'hello, world' | |
// Created : 20.06.2012 | Wednesday | |
// Author : Sandeep Raju <[email protected]> | |
#include <iostream> | |
int main(int argc, char* argv[]) | |
{ | |
std::cout << "hello, world" << std::endl; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hello world