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
Favorite Forums
Favorite Tags
c++ x 41

9 Posted Topics

Member Avatar for raj157

Well it is an assignment question here is the question : Implement a base class Person. Derive classes Student and Instructor from Person. A person has a name and a birthday. A student has a major, and an instructor has a salary. Write the class definitions, the constructors, and the …

Member Avatar for William Hemsworth
0
733
Member Avatar for raj157

well the problem is i want to write the person's name from preson class to instructor class using inhertiance, i have come up with the following code but gives error .. can someone tell me what am i missing or what can be done. its like sharing from person class …

Member Avatar for raj157
0
121
Member Avatar for raj157

Can someone help me to start this assignment. i am totally lost on what needs to be done .. can someone provide me with some input ... would be great help .... not asking for someone to write me the code .. just tell me what needs to be done …

Member Avatar for vijayan121
0
314
Member Avatar for raj157

i have a question Write a function that returns a pointer to the maximum value of an array of floating-point data: double* maximum(double a[], int a_size) If a_size is 0, return NULL. first of all i don't want the code for the entire program .. can someone tell me how …

Member Avatar for raj157
0
106
Member Avatar for raj157

Hi i need help in c++ vectors ... if you have a vector lets say 1,4,5,6,4,6,7 and you have to remove the duplicate vectors i.e to bring it in the form 1,4,5,6,7 .... i tried the double nested loop and trying to get the first vector and comparing with the …

Member Avatar for ~s.o.s~
0
129
Member Avatar for raj157

hi i have this assignment in which i am lost ... if someone could help me it would be great .... i dun need someone to write the program ... just some hints ... i will try to compile it myself ... just let me know how would u do …

Member Avatar for iamthwee
0
363
Member Avatar for need.help

check the link below ... something similar is done [url]http://www.daniweb.com/techtalkforums/thread72734.html[/url] uoit lol

Member Avatar for John A
0
125
Member Avatar for raj157

for regular series caluclation we could use this [CODE]{ double summand = 1; int n = 1; double sum = 1; do { summand = summand * x / n; sum = sum + summand; n--; } while (summand > 0.00001); return sum; }[/CODE] i.e for e^x= 1+x+(x^2)/2! + (x^3)/3! …

Member Avatar for need.help
0
360
Member Avatar for raj157

in a simulation program like below Program the following simulation: Darts are thrown at random points onto a square with corners (1, 1) and (−1, −1). If the dart lands inside the unit circle (that is, the circle with center (0, 0) and radius 1), it is a hit. Otherwise …

Member Avatar for ~s.o.s~
0
133

The End.