C++

C++ program to store information of a student in a structure with for loop

In this article, you will learn how to make a C++ program to store information of a student in a structure with for loop in the c++ programming language.

You should have knowledge of the following topics in c++ programming to understand this program:

  • C++ Structure DataType
  • C++ for loop statement
  • C++ cin object
  • C++ cout object

C++ Source Code:

Output:

In this program, we asked the user to enter the 10 number of students to add to the student structure variable.

After that, we filled 10 students’ input data like First Name, Last Name, and Marks of the students.

Then applied for loop statement to make this calculation and It returned the 10 students’ records as output.

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.