Skip to content

Instantly share code, notes, and snippets.

Created June 1, 2013 01:53
Show Gist options
  • Save anonymous/5689015 to your computer and use it in GitHub Desktop.
Save anonymous/5689015 to your computer and use it in GitHub Desktop.
use macro in the implement of function.
#include <iostream>
int main(int argc, char *argv[])
{
#define a 2
std::cout << a << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment