No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
i love programming
- Interests
- C++ programing
- PC Specs
- 80GB-hard,4GB RAM
4 Posted Topics
#include "graphics.h" #include <stdlib.h> #include <stdio.h> #include <conio.h> #include<iostream> using namespace std; int main(void) { /* request autodetection */ int gdriver = DETECT, gmode, errorcode; int midx, midy; /* initialize graphics and local variables */ initgraph(&gdriver, &gmode, ""); /* read result of initialization */ errorcode = graphresult(); if (errorcode != … | |
Re: You ask to differecetiate b/w data hiding ,ecapsulation and adstraction. Data hiding:it means hide your data from the user by using set() and get() fuctions and your user never know about the private members of your class. Encapsulation: it means data and behaviors(functions) are combined inside an object.As you know … | |
This programe is made for biggners in c++ to made programe efficently and hide your prevate data form the user of your programe.This programe is made with the use of this pointer and also use the operator overloading. I will share this programme with others to understand it. //this programme … | |
|
The End.