TutorialsBazaar

← Back

Learn C Programming

Module 13/15

Structures & Unions

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;
}