artulab
projects
/
openbsd
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
2de37041f263a7844497ce378f6d4450ed53c5c6
[openbsd]
/
1
#include <stdio.h>
2
3
typedef struct Struct
4
{
5
int one;
6
int two;
7
} Struct;
8
9
int
10
main()
11
{
12
Struct myStruct = {10, 20};
13
printf ("Break here: %d\n.", myStruct.one);
14
return 0;
15
}