#include <stdio.h> union test { char ch; char c; int n; }ts; int main() { printf("%d", sizeof(ts)); return 0; }
4
Previous Question Next Question
Your comments will be displayed only after manual approval.