22 lines · cpp
1#include <stdio.h>2 3struct contained4{5 int first;6 int second;7};8 9struct container10{11 int scalar;12 struct contained *pointer;13};14 15int main ()16{17 struct container mine = {1, 0};18 printf ("Mine's scalar is the only thing that is good: %d.\n", mine.scalar); // Set break point at this line.19 return 0;20}21 22