What is the use of main function in c++?
No Answer is Posted For this Question
Be the First to Post Answer
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
What is function declaration in c++ with example?
How do you generate a random number in c++?
What is vector string in c++?
What is a vector c++?
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
Write a program to swap 2 chars without using a third varable? char *s = "A"; char *p = "B";
Is c++ low level?
Why do we use setw in c++?
What is a flag in c++?
What is name mangling?
What you mean by early binding and late binding? How it is related to dynamic binding?