What is the size of a vector?
No Answer is Posted For this Question
Be the First to Post Answer
Explain shallow copy?
daily Routine of father
can anybody please tell me how to write a program in c++,without using semicolon(;)
Who was the creator of c++?
Does there exist any other function which can be used to convert an integer or a float to a string?
How many lines of code you have written for a single program?
What is function prototyping? What are its advantages?
Explain what you mean by a pointer.
write a program that a 5 digit number and calculates 2 power that number and prints it.
2 Answers Vimukti Technologies,
How do we implement inheritance in c++?
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
#include<iostream.h> void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }