wrong statement about c++
a)code removably
b)encapsulation of data and code
c)program easy maintenance
d)program runs faster
Answers were Sorted based on User's Feedback
int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30
Can we use struct in c++?
What are the weaknesses of C++?
When does a 'this' pointer get created?
What is the difference between a definition and a declaration?
What is cloning?
Can we sort map in c++?
write a program to insert an element into an array
Can notepad ++ run c++?
Implement a 2 dimensional array by one dimentional array
explain the reference variable in c++?
Describe new operator?