Skip to content

Instantly share code, notes, and snippets.

@Jack2
Created October 26, 2012 18:39
Show Gist options
  • Save Jack2/3960608 to your computer and use it in GitHub Desktop.
Save Jack2/3960608 to your computer and use it in GitHub Desktop.
C++가 보이는 그림책 - C vs C++ 간단한 예제
#include <stdio.h>
main()
{
printf("Hello\nWorld!\n");
}
#include <iostream>
int main()
{
std::cout << "Hello\nWorld!\n";
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment