write a c++ program to create an object of a class called
employee containing the employee code name designation basic
salarry HRA Da gross salary as data 10 such objects "members
process "
Answer / ray baboo yadav
#include<iostream.h>
#include<conio.h>
class person
{
int person;
float salery;
}p;
cout<<"enter the person name";
cin>>p.person;
cout<<"enter the salery";
cin>>p.salery;
}
void main()
{
person;
getch();
}
| Is This Answer Correct ? | 6 Yes | 21 No |
How stl is different from the c++ standard library?
What is the STL?
What is Object Oriental Progam
Describe how to safeguard a system through acquisition of an antivirus Program and systematic backup.
help me i need a c++ program which takes sequesnce of characters and outputed sequence of their token taypes, work same compiler in lexical analysis phase
if 4-5 year old brother is standing on d roof with me and watching d moon, suddenly moon coverd by cloud then how will i explain d hiding of moon to my brother.
what's the difference between function overloading and function overiding?
How to write a function that goes through an array of characters and eliminates any elements that are not letters (Legal letters can be either in an uppercase or a lowercase format.) The function removeNonLetters should return the new effective size of the array as the result.
write a program that input four digit number and find how many 7 that number contains
method overloading means what?
give me the defination of inheritance?
Explain when u will use Observer pattern and how u will implement in c++ .