reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
#include <stdio.h>

int main (int argc, char const *argv[])
{
    struct {
        int a;
        int b;
        int c;
    } MyAggregateDataType;

    printf ("Set break point at this line.\n");
    return 0;
}