Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Class notes

class and object and function overloading programs using c++

Rating
-
Sold
-
Pages
15
Uploaded on
15-12-2022
Written in
2022/2023

it contains programs based class and object concept and function overloading concept done in c++

Institution
Course

Content preview

Name – SHASHWAT TIWARI


CSE (CN)


Week 3
18CSC202J – Object Oriented Design and Programming




1. Create a class named 'Student' with a string variable 'name' and an integer variable
'roll_no'. Assign the value of roll_no as '2' and that of name as "John" by creating an
object of the class Student.
ANS-
PROGRAM:

#include <iostream>
#include <string>
using namespace std;


class student {
public:
string name;
int roll_no;
};


int main() {
student st1;


st1.name = "john";
st1.roll_no = 2;


cout << "Name: " << st1.name << endl;
cout << "roll: " << st1.roll_no << endl;
}

, 2. Write a C++ program to illustrate the concept of class and object creation. (Ask
students to create a class, methods and invoke them inside the main method).
ANS-
PROGRAM:

#include <bits/stdc++.h>
using namespace std;
class Geeks
{
// Access specifier
public:


// Data Members
string geekname;


// Member Functions()
void printname()
{
cout << "Geekname is: " << geekname;
}
};


int main() {


// Declare an object of class geeks
Geeks obj1;


// accessing data member
obj1.geekname = "sakshi";


// accessing member function

Written for

Institution
Course

Document information

Uploaded on
December 15, 2022
Number of pages
15
Written in
2022/2023
Type
Class notes
Professor(s)
Dr. d.p. thilak
Contains
All classes

Subjects

$3.49
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Get to know the seller
Seller avatar
shashwattiwari

Also available in package deal

Get to know the seller

Seller avatar
shashwattiwari SRM Institute of Science and Technology
Follow You need to be logged in order to follow users or courses
Sold
-
Member since
3 year
Number of followers
0
Documents
3
Last sold
-

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions