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

Product Placement

tannertan36

Andulka

Kaledo Art
we're not kids anymore.
art blog(derogatory)
Jules of Nature
Show & Tell
Three Goblin Art

Love Begins

ellievsbear
TVSTRANGERTHINGS
Mike Driver
Alisa U Zemlji Chuda
trying on a metaphor
todays bird
Xuebing Du
2025 on Tumblr: Trends That Defined the Year
Game of Thrones Daily
Not today Justin
seen from United States

seen from United States
seen from Germany

seen from Canada
seen from United States
seen from United States
seen from United States
seen from Canada

seen from United States
seen from United States
seen from United States

seen from Malaysia
seen from Israel

seen from United States
seen from United States
seen from United States
seen from Malaysia
seen from United States

seen from Malaysia

seen from United States
@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 :)