brintos

brintos / llvm-project-archived public Read only

0
0
Text · 212 B · 9bc5724 Raw
14 lines · cpp
1#include <stdio.h>2 3int main (int argc, char const *argv[])4{5    struct {6        int a;7        int b;8        int c;9    } MyAggregateDataType;10 11    printf ("Set break point at this line.\n");12    return 0;13}14