forked from OSchip/llvm-project
15 lines
136 B
C
15 lines
136 B
C
|
typedef struct
|
||
|
{
|
||
|
int a;
|
||
|
float b;
|
||
|
} mystruct;
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
mystruct c;
|
||
|
|
||
|
c.a = 5;
|
||
|
c.b = 3.6;
|
||
|
|
||
|
return 0;
|
||
|
}
|