There are a classroom where are hundred of student. They all have individual name, id, and age. If we want to collect their information we need to declare hundred of variables for name, hundred of variables for id, hundred of variable for age. So we need to write a huge code for it. Array can help to reduce this code but when to want to update information one of student, it is hard. By using structure we can solve this problem. Data structure is the collection of various kinds of data under the same name. it is one kinds of advanced array system. Lets know more about data structure…… Firstly we observe the syntax of data structure Struct sructer_name{ Data_type1 data_name1; Data_type2 data_name2; Data_type3 data_name3; . . Data_type(n) data_name(n); }object_name Lets to see a code to more learn about data structure. I think you are learn something from the syntax but it can’t enough. #include<iostream> #include<string> using namespace st
Just think, one day your teacher give you a box of different types chocolate, and tell you there are 10 types of chocolate you count only how much each type of chocolate , and put those numbers in your program and determine sum of them. What you will do? You able to count all chocolate number and store them in different variable. At least 10 variable need to store them. Do you know you can store them into one variable? The method of this name is array. Array is the method of store one kinds of data into one variable. 5 7 5 2 9 8 11 4 3 10 0 1 2 3 4 5 6 7 8 9