STL (140)
OOPS (873)
C++ General (2409) String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?
HCL,
2455Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
CSC,
6 9065What is optimization in c++? when using volatile.optimization is not possible..what does this mean?
1 4142What is the difference in size of this two clasees? Class A { int a; char c; float f; } Class B { float f; char c; int a; }
4 6192
What is binary object model?
List the advantages of inheritance.
What is polymorphism programming?
Can a varargs method be overloaded?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
Define the operators that can be used with a pointer.
How can you say that a template is better than a base class?
What is jump statement in C++?
Write a c++ program to display pass and fail for three student using static member function
What is an arraylist c++?
What are functions in oop?
hi, this is raju,iam studying b.tech 2nd year,iam want know about group1 and group2 details, and we can studying without going to any instutions? please help me.
In what scenario does the Logical file and Physical file being used?
Define a conversion constructor?
What are punctuators in c++?