Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~3K People Reached
Favorite Forums
Favorite Tags
c++ x 33

7 Posted Topics

Member Avatar for mugilan

Hi friends, I am new to c++, just find this example from the book, but when i try to run in my visual studio,its gives problem. there is no error in the codes, it compile well, and in main screen ask the user to input the selection that they want, …

Member Avatar for mugilan
0
150
Member Avatar for kokopo2

#include #include using namespace std; class employee { string getname; string getsalary; int salary; public: void getdata(void); void setdata(void); employee() { salary =10%; last = " "; first = " "; } }; void employee::getdata(void) { cout<<"\n a first name:"<>first; cout<<"last name?:"; cin>>last; cout<<"monthly salary?:"; cin>>salary; } int main() { …

Member Avatar for Dave Sinkula
0
455
Member Avatar for mugilan

what about this question.........what is a default comstructor? how are an object's data members initialized if a class has only an implicitly defied default constructor? explain the purpose of data member. << moderator edit: split thread (was a reply to [thread=15829]this[/thread]) >>

Member Avatar for nattylife
0
1K
Member Avatar for paladin4service

can anybdy help on this question......write a program that uses a for statement to calculate and print the average of several integers. assume the last value read is the sentinel 9999. a typical input sequence might be. 10.....8......11.....7.....9.......9999

Member Avatar for Ancient Dragon
0
249
Member Avatar for Arhianne

#include #include using namespace std; class employee { string getname; string getsalary; int salary; public: void getdata(void); void setdata(void); employee() { salary =10%; last = " "; first = " "; } }; void employee::getdata(void) { cout<<"\n a first name:"<>first; cout<<"last name?:"; cin>>last; cout<<"monthly salary?:"; cin>>salary; } int main() { …

Member Avatar for Dante Shamest
0
122
Member Avatar for the b

anybody can correct me........ this my question..... (employee class) create a class called employee that include three pieces of information as data members - a first name (type string), a last name (type string) and a monthly salary (type int).your class should have a constructor that initializes the three data …

Member Avatar for 1o0oBhP
0
660
Member Avatar for LubLub

this the question........ (employee class) create a class called employee that include three pieces of iformation as data members - a first name(type string), a last name(type string) and a monthly salary(type int). your class should have a constructor that initializes the three data members. provide a set and a …

Member Avatar for LubLub
0
260

The End.