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).

Frequently Asked Questions

What is a structure in C++?
A structure, declared with struct, groups related variables of different types under one name. For example a Student struct can hold a name, roll number and marks together, so you can treat one student as a single value instead of separate variables.
How do you access members of a struct in C++?
You use the dot operator on a struct variable, such as s.name or s.marks. If you have a pointer to a struct, you use the arrow operator instead, like p->name, which is shorthand for (*p).name.
What is the difference between struct and class in C++?
In C++ a struct and a class are almost identical; the only real difference is default access. Members of a struct are public by default, while members of a class are private by default. By convention, structs are used for plain data and classes for types with behaviour.
Can a struct have functions in C++?
Yes. Unlike C, a C++ struct can contain member functions as well as data, because struct and class are nearly the same. In practice, though, structs are usually kept as simple data holders and classes are used when you need methods and encapsulation.
How do you make an array of structures in C++?
You declare an array whose element type is the struct, such as Student list[3];, and then access each element and its members together, like list[0].name. This is handy for storing many records of the same shape, such as a list of students.

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)।
← Back to C++ Tutorial
🔗

Share this topic with a friend

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

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

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

💻 Live Code Editor

This page's programs are ready here — run them, edit them, and learn. No installation needed.
Powered by OneCompiler. The code loads into the editor automatically — press Run to see the output. If the editor does not open, open it in a new tab.