Skip to content

Instantly share code, notes, and snippets.

@abatilo
Created October 26, 2015 14:52
Show Gist options
  • Save abatilo/11590c19449439d5ce54 to your computer and use it in GitHub Desktop.
Save abatilo/11590c19449439d5ce54 to your computer and use it in GitHub Desktop.
#include <stdio.h>
class Temp {
public:
static int a;
};
int Temp::a = 0;
int main() {
printf("a: %d\n", Temp::a);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment