Fix the Compilation Error and find the output #include<iostream> using namespace std; class Test { int x; public: ...
Read More
Showing posts with label Pointers in cpp. Show all posts
Showing posts with label Pointers in cpp. Show all posts
Ways to store Array address in Pointer
Ways to store Array address in Pointer Suppose we have a pointer 'p' and an array 'a' : Declaration : i...
Read More
Program to search the given element in entered array using pointer.
A Program to search the given element in entered array using pointer. Program: #include<iostream> using namespace ...
Read More
Write a program to perform Pointer to Array of Object
/* Class Brithday Pointer to Array of Object */ #include<iostream> using namespace std; class Brithday { int day...
Read More
Write a program to perform Pointer on class Box
/* Class Box using Pointer */ #include<iostream> using namespace std; class Box { int height,width,breadth; publi...
Read More
Write a program to perform Pointer to object
/* Class Book Pointer to object */ #include<iostream> using namespace std; class Book { char book_name[20],author_nam...
Read More
Write a Program to perform Pointer to derived Class
/* Pointer to derived Class */ #include<iostream> using namespace std; class Polygon { protected: int width,heig...
Read More
How to differentiate our data member and local variable using this pointer
/* How to differentiate our data member and local variable using this pointer */ #include<iostream> using namespace std; clas...
Read More
Subscribe to:
Posts (Atom)