Ramazan is near to end but EID & Exam are coming :P
whops its time to repatriation because campus sir to agree to arrange sir for CS402 the automata :S
Sade Olutola

blake kathryn
todays bird
NASA
Not today Justin

pixel skylines

@theartofmadeline
The Stonewall Inn
almost home
taylor price
Fai_Ryy

Product Placement
official daine visual archive

oozey mess
★
RMH

Game Changer & Make Some Noise

roma★
seen from United States
seen from Indonesia

seen from Colombia

seen from Panama
seen from Brazil

seen from South Africa
seen from Iraq
seen from United States
seen from Uzbekistan
seen from Ukraine
seen from Türkiye

seen from India

seen from Brazil
seen from Mauritius

seen from Türkiye

seen from United States

seen from Norway
seen from Bangladesh

seen from United States
seen from Brazil
@zee-vu
Ramazan is near to end but EID & Exam are coming :P
whops its time to repatriation because campus sir to agree to arrange sir for CS402 the automata :S

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Find not so much but CS :P
Counter strike on the rock :P
start code on my upcoming assignment, do you like to add your experience :P welcome everyone :)
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
stay tune i'll update the code soon My Code :)
#include<iostream> // header file
using namespace std;
class studentInfo // Class for student info
{
private:
char * stdId;
char * courseId;
char * courseName;
public:
studentInfo(char* sId, char* cId, char * cName) ; // parameterized constructor declaration
// public Functions for setting and getting thte values.
void set_stdId(char *); // setter member function declarations
void set_courseId(char *);
void set_courseName(char *);
char * get_stdId(); // getter member function declarations.
char * get_courseId();
char * get_courseName() ;
void display(); // member function Display
};
main()
{
studentInfo obj("MC123456789","CS201","Introduction to programming"); //object creation by using parameterized constructor.
obj.display(); // Displaying values.
system("pause");
}
// Function definations
studentInfo::studentInfo(char* sId, char* cId, char * cName) // parameterized constructor
{
set_stdId(sId) ;
set_courseId(cId);
set_courseName(cName);
}
void studentInfo::set_stdId(char *sId) // Setter function to set student ID
{
stdId=sId;
}
void studentInfo::set_courseId(char * cId) // Setter function to set course ID
{
courseId=cId;
}
void studentInfo::set_courseName(char * cName) // setter function to set course name
{
courseName=cName;
}
char * studentInfo::get_stdId() // Getter Function return student ID
{
return stdId;
}
char * studentInfo::get_courseId() // Getter Function return course ID
{
return courseId;
}
char * studentInfo::get_courseName() // Getter Function return course name
{
return courseName;
}
void studentInfo::display() // Display member functionn to display student id, course id and course name
{
cout<<"Student Id: " << get_stdId()<<endl;
cout<<"Course Id: " << get_courseId()<<endl;
cout<<"Course Name: " << get_courseName()<<endl;
}
If you find any error tell me :)
First day Statistics class :P normal distribution :)