#include stdio.h union student { int roll; double percentage; }; void function() { union student s; printf("%d", (int)sizeof(s)); } int main() { function(); return 0; }
Not registered? Create an account
Forgot Password?
Already a registered user? Login