CS201-Introduction to Programming Assignment No.2 Spring semester 2014

The assignment is submitted after due date.
The submitted assignment does not open or file is corrupt.
Assignment is copied(partial or full) from any source (websites, forums, students, etc)

Note: You have to upload only .cpp file. Assignment in any other format (extension) will not be accepted and will be awarded with zero marks. For example, if you submit code in .doc (Word document) or .txt files or .exe file, no reward will be given in any case.
Objective:

Sponsored Links


The objective of this assignment is to provide hands on experience of:
Basic concepts of C/C++ classes and objects
Dealing with Data members and member functions
Initialization of objects
Constructor
Destructor


Guidelines:

Code should be properly indented and well commented.
Follow C/C++ rules while writing variable names, function names etc
Use only dev-C++ for this assignment.

Assignment

Problem Statement:
You are required to write a C++ program which contains a class studentInfo having following data members:



Student ID
Course ID
Course Name

The class must have the following member functions:

Parameterized constructor
Setter functions
Getter functions
Display function


Detailed Description:

Parameterized constructor: It should take three strings as arguments (Student Id, Course Id and Course Name) and initializes the data members of class using setter functions
Setter functions: There must be a setter function for each data member of class
Getter functions: There must be a getter function for each data member of class
Display function: It should display the values of each data member of class by calling getter functions.
Within main() function, create an object of studentInfo class by using the parameterized constructor and pass three strings (student id, course id and course name) as arguments to this parameterized constructor. Then, call the display function which will display the values of student id, course id and course name.