What is a buffer c++?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program using GUI concept for the scheduling algorithms in Operating system like SJF,FCFS etc..
Const char *p , char const *p What is the difference between the above two?
How do you remove an element from a set in c++?
Why Pointers are not used in C++?
What is the difference between new/delete and malloc/free?
#include<iostream.h> void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
Do the names of parameters have to agree in the prototype, definition, and call to the function?
Where the memory to the static variables is allocated?
What should main() return in c and c++?
What is an iterator?
Does there exist any other function which can be used to convert an integer or a float to a string?