blob: 2de37041f263a7844497ce378f6d4450ed53c5c6 [file] [log] [blame]
#include <stdio.h>
typedef struct Struct
{
int one;
int two;
} Struct;
int
main()
{
Struct myStruct = {10, 20};
printf ("Break here: %d\n.", myStruct.one);
return 0;
}