All pastes #2059903 Raw Edit

Someone

public c v1 · immutable
#2059903 ·published 2011-05-15 08:50 UTC
rendered paste body
#include <stdio.h>union {	struct	{		float s, t;	};	struct	{		float x, y;	};} test;int main(){	test.x = 5;	test.y = 10;	printf("s: %f t: %f\n", test.s, test.t);	return 0;}