Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
About Me

i love programming

Interests
C++ programing
PC Specs
80GB-hard,4GB RAM
Favorite Tags

4 Posted Topics

Member Avatar for Mubeshier

#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 != …

Member Avatar for Duoas
0
1K
Member Avatar for nitin1

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 …

Member Avatar for rubberman
0
254
Member Avatar for Mubeshier

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 …

Member Avatar for rubberman
0
292
Member Avatar for Mubeshier

The End.