TutorialsBazaar

← Back

Learn C++ Programming

Module 13/15

Structures & Unions

Module 13 of 15

Structures group different data types. C++ also introduces classes which are more powerful and support OOP concepts.

Structures अलग-अलग data types को group करते हैं और C++ में classes भी होते हैं जो OOP को support करते हैं।

#include <stdio.h>

int main() {
    printf("Welcome to Structures & Unions");
    return 0;
}