#include using namespace std; struct Example { int a; Example(int b); void printA(); }; Example::Example(int b) { a = b; } void Example::printA() { cout << "a = " << a<