blob: 0f42f9d1c88e7afb5cfc2ceaa226d0949e084865 [file] [log] [blame] [edit]
#include <stdio.h>
struct contained
{
int first;
int second;
};
struct container
{
int scalar;
struct contained *pointer;
};
int main ()
{
struct container mine = {1, 0};
printf ("Mine's scalar is the only thing that is good: %d.\n", mine.scalar); // Set break point at this line.
return 0;
}