1 struct Structure { 2 int m_field; funStructure3 void fun() { 4 // check this 5 } 6 }; 7 main()8 int main() { 9 Structure s; 10 s.m_field = 30; 11 s.fun(); 12 } 13