Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
325 B
C++
Raw Permalink Normal View History

#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;
}