#include<stdio.h> union p { int x; char y; }; int main() { union p b; b.y = 60; b.x = 12; printf("%d\n", b.y); }
To embed this project on your website, copy the following code and paste it into your website's HTML: