Hi i need to Acess a variable "int Intval" in the below
mentioned code .How to Access it guys i am waiting for your
reply
Answer Posted / saikat ganguly
class val
{
int intval
public :
void func ()
{
print("\n Enter the value of intval);
scanf("%d",&intval);
}
};
void main()
{
val p
p.func();
getch();
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is operators in c++?
What does std :: flush do?
What are the advantages of using a pointer? Define the operators that can be used with a pointer.
What is object in c++ example?
Are there interfaces in c++?
If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?
How much maximum can you allocate in a single call to malloc()?
Can we inherit constructor in c++?
How does code-bloating occur in c++?
Which is the best c++ software?
What kind of jobs can I get with c++?
What is array give example?
What is difference between malloc()/free() and new/delete?
write a programme to get a character and thier ASCII value
What is a down cast?