Free tutorials & notes in Hindi & English · Clean code examples · Mobile friendly learning
🔵 Core C++  ·  Lesson 28

Structures in C++

Written and reviewed by · Senior IT Faculty · 15+ years’ experience

What is a structure?

A structure groups related pieces of data — of possibly different types — under one name. Instead of separate variables for a student's name, roll number and marks, you bundle them into one Student value.

Defining a struct

C++
struct Student {
    string name;
    int roll;
    double marks;
};   // note the semicolon

This defines a new type called Student. The members are the variables inside it.

Creating and accessing

Create a variable of the struct type and reach its members with the dot operator:

C++
#include <iostream>
using namespace std;
struct Student { string name; int roll; double marks; };

int main() {
    Student s;
    s.name = "Amit";
    s.roll = 12;
    s.marks = 88.5;
    cout << s.name << " (" << s.roll << "): " << s.marks << "\n";
    return 0;
}
Output:
Amit (12): 88.5

You can also initialise at once: Student s = {"Amit", 12, 88.5};. With a pointer, use the arrow: p->name.

Array of structs

Storing many records is easy — make an array of the struct:

C++
Student list[2] = {{"Amit", 1, 90}, {"Riya", 2, 95}};
for (int i = 0; i < 2; i++)
    cout << list[i].name << " " << list[i].marks << "\n";
Output:
Amit 90
Riya 95

Structs with functions

Pass a struct to a function — by const reference to avoid copying large ones:

C++
void printStudent(const Student &s) {
    cout << s.name << ": " << s.marks << "\n";
}

struct vs class

structclass
Default accesspublicprivate
Typical usePlain dataData + behaviour
Can have methods?YesYes

The only language difference is default access. See classes and objects to go further with behaviour and encapsulation.

Common mistakes

  • Forgetting the semicolon after the closing brace of a struct.
  • Using . on a pointer instead of ->.
  • Copying large structs by value when a const reference is better.
  • Expecting struct members to be private — they are public by default.
🏋️ Practice

Define a Book struct with title, author and price. Make an array of three books, read them in, and print the most expensive one.

Summary

  • A struct groups related data of different types under one name.
  • Access members with the dot operator (or -> via a pointer).
  • Arrays of structs store many records of the same shape.
  • Pass structs by const reference to functions to avoid copies.
  • struct and class differ only in default access (public vs private).

Structure क्या है?

Structure संबंधित data के टुकड़ों को — संभवतः अलग types के — एक नाम के तहत समूहित करता है। एक student के नाम, roll number और marks के लिए अलग variables के बजाय, आप उन्हें एक Student value में बाँध देते हैं।

struct परिभाषित करना

C++
struct Student {
    string name;
    int roll;
    double marks;
};   // semicolon dhyan dein

यह Student नामक एक नया type परिभाषित करता है। Members इसके अंदर के variables हैं।

बनाना और access करना

struct type का variable बनाएँ और dot operator से इसके members तक पहुँचें:

C++
#include <iostream>
using namespace std;
struct Student { string name; int roll; double marks; };

int main() {
    Student s;
    s.name = "Amit";
    s.roll = 12;
    s.marks = 88.5;
    cout << s.name << " (" << s.roll << "): " << s.marks << "\n";
    return 0;
}
Output:
Amit (12): 88.5

आप एक साथ भी initialise कर सकते हैं: Student s = {"Amit", 12, 88.5};। Pointer के साथ, arrow इस्तेमाल करें: p->name

Structs का array

कई records रखना आसान है — struct का array बनाएँ:

C++
Student list[2] = {{"Amit", 1, 90}, {"Riya", 2, 95}};
for (int i = 0; i < 2; i++)
    cout << list[i].name << " " << list[i].marks << "\n";
Output:
Amit 90
Riya 95

Functions के साथ structs

Struct को function को भेजें — बड़े को copy से बचाने को const reference द्वारा:

C++
void printStudent(const Student &s) {
    cout << s.name << ": " << s.marks << "\n";
}

struct बनाम class

structclass
Default accesspublicprivate
सामान्य इस्तेमालसादा dataData + व्यवहार
Methods हो सकते हैं?हाँहाँ

एकमात्र भाषा अंतर default access है। व्यवहार और encapsulation के साथ आगे बढ़ने को classes और objects देखें।

आम गलतियाँ

  • struct के closing brace के बाद semicolon भूलना।
  • Pointer पर -> के बजाय . इस्तेमाल करना।
  • बड़े structs को value से copy करना जब const reference बेहतर है।
  • struct members को private मानना — वे default रूप से public हैं।
🏋️ अभ्यास

title, author और price वाला एक Book struct परिभाषित करें। तीन books का array बनाएँ, उन्हें पढ़ें, और सबसे महँगी print करें।

सारांश

  • struct अलग types के संबंधित data को एक नाम के तहत समूहित करता है।
  • Members को dot operator से access करें (या pointer के ज़रिए ->)।
  • Structs के arrays एक ही आकार के कई records रखते हैं।
  • Copies से बचने को structs को functions को const reference द्वारा भेजें।
  • struct और class केवल default access में भिन्न हैं (public बनाम private)।

अक्सर पूछे जाने वाले प्रश्न (FAQ)

C++ में structure क्या है?
Structure, struct से घोषित, अलग types के संबंधित variables को एक नाम के तहत समूहित करता है। जैसे एक Student struct एक नाम, roll number और marks को साथ रख सकता है, तो आप एक student को अलग variables के बजाय एक single value की तरह मान सकते हैं।
C++ में struct के members कैसे access करते हैं?
आप struct variable पर dot operator इस्तेमाल करते हैं, जैसे s.name या s.marks। अगर आपके पास struct का pointer हो, आप इसके बजाय arrow operator इस्तेमाल करते हैं, जैसे p->name, जो (*p).name का संक्षिप्त रूप है।
C++ में struct और class में क्या अंतर है?
C++ में struct और class लगभग समान हैं; एकमात्र असली अंतर default access है। struct के members default रूप से public होते हैं, जबकि class के members default रूप से private। परंपरा से, structs सादे data के लिए और classes व्यवहार वाले types के लिए इस्तेमाल होते हैं।
क्या C++ में struct में functions हो सकते हैं?
हाँ। C के विपरीत, C++ struct में data के साथ member functions भी हो सकते हैं, क्योंकि struct और class लगभग एक जैसे हैं। पर व्यवहार में, structs आमतौर पर सादे data holders रखे जाते हैं और classes तब इस्तेमाल होते हैं जब आपको methods और encapsulation चाहिए।
C++ में structures का array कैसे बनाते हैं?
आप ऐसा array घोषित करते हैं जिसका element type struct हो, जैसे Student list[3];, और फिर हर element तथा उसके members को साथ access करते हैं, जैसे list[0].name। यह एक ही आकार के कई records रखने के लिए काम आता है, जैसे students की सूची।
← Back to C++ Tutorial
🔗

Share this topic with a friend

यह topic किसी दोस्त को भेजें

Found it useful? Send it to a classmate learning the same thing.

अच्छा लगा? जो दोस्त यही सीख रहा है, उसे भेज दीजिए।

💻 लाइव कोड एडिटर

इस पेज के प्रोग्राम यहीं तैयार हैं — चलाएँ, बदलें और सीखें। कुछ भी इंस्टॉल किए बिना।
OneCompiler द्वारा संचालित। कोड एडिटर में अपने आप आ जाता है — Run दबाकर आउटपुट देखें। अगर एडिटर न खुले तो नए टैब में खोलें.