1 2 3 4 5 6 7 8 9 10
struct Structure { int number; }; int main(int argc, char **argv) { struct Structure s; s.number = 30; // break here return 0; }