Skip to content

Instantly share code, notes, and snippets.

@Jack2
Created November 10, 2012 05:49
Show Gist options
  • Save Jack2/4050067 to your computer and use it in GitHub Desktop.
Save Jack2/4050067 to your computer and use it in GitHub Desktop.
[C++]const_example(+char*)
#include <iostream>
using namespace std;
int main()
{
const char* company = "INetCop";
cout << company;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment