struct Structure { int number; }; int main(int argc, char **argv) { struct Structure s; s.number = 30; // break here return 0; }