1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* * * 7.56 * * */ int main () { // A static member is shared across all objects of the same Class type. // This means that if we change the static member, all classes will be // see this change on the static member. return 0; }