Module 13 of 15
Structures allow grouping of different data types under one name. Unions are similar but share the same memory location.
Structures अलग-अलग data types को एक साथ group करते हैं। Unions में सभी variables एक ही memory share करते हैं।
#include <stdio.h>
int main() {
printf("Welcome to Structures & Unions");
return 0;
}