[ create a new paste ] login | about

Link: http://codepad.org/WRb6pgLS    [ raw code | fork ]

C, pasted on Oct 21:
1
2
3
4
5
6
7
8
9
10
11
12
union 
{
  int a;
  struct {
    char b;
    double c;
  } d;
};

int main()
{
}


Output:
No errors or program output.


Create a new paste based on this one


Comments: