What is the use of structure in c++?
What do you mean by vtable and vptr in c++?
Evaluate as true or false: !(1 &&0 || !1) a) True b) False c) Invalid statement
What do you mean by C++ access specifiers ?
You're given an array containing both positive and negative integers and required to find the sub-array with the largest sum (O(N) a la KBL). Write a routine in C for the above.
What is a terminating character in c++?
What is the basic difference between C and C++?
What are manipulators in c++ with example?
What is the difference between #import and #include?
what are the events occur in intr activated on interrupt vector table
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
wap to accept 10 numbers & display the number of odd and even numbers??
How can a '::' operator be used as unary operator?