MCQOPTIONS
Bookmark
Saved Bookmarks
→
Object Oriented Programming
→
Inbuilt Classes in Object Oriented Programming
→
#include
void main(){int *ptr, a=10;ptr = ..
1.
#include
void main(){int *ptr, a=10;ptr = &a;*ptr += 1;printf("%d, %d", *ptr, a);}
A.
0, 10
B.
0, 11
C.
1, 10
D.
1, 11
Answer» E.
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
Which is the correct syntax for declaring the type of this in a member function?
Which among the following is/are type(s) of this pointer?
This pointer can be used directly to ___________
Earlier implementations of C++ ___________________
The this pointers _____________________
Which syntax doesn’t execute/is false when executed?
The address of the object _________________
Which is the correct interpretation of the member function call from an object, object.function(parameter);
The result of sizeof() function __________________
An object’s this pointer _____________________
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply