13 lines
212 B
C++
13 lines
212 B
C++
#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;
|
|
}
|