Skip to content

Instantly share code, notes, and snippets.

@P1xt
Created August 5, 2014 19:14
Show Gist options
  • Save P1xt/73fa86d2568d7e52ff7f to your computer and use it in GitHub Desktop.
Save P1xt/73fa86d2568d7e52ff7f to your computer and use it in GitHub Desktop.
Exercise 1
/**
* Copy the following, then edit it so it compiles correctly
* and prints "Hello, World!" on the screen.
*
* #include<iosteam.h>
* void main()
* {
*
* cout<<"Danny Walling";
* cin getput();
* }
**/
#include <iostream>
using namespace std;
/**
* @brief main()
*
* @return int
*/
int main() {
cout<<"Hello, World!";
cin.get();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment