What is c strings syntax?
No Answer is Posted For this Question
Be the First to Post Answer
Are vectors passed by reference c++?
what is the order of initialization for data?
10 Answers Amazon, TCS, Wipro,
Is there a datatype string in c++?How is the memory allocation?
What is the difference between while and do while loop?
const char * char * const What is the differnce between the above two?
What is the difference between prefix and postfix versions of operator++()?
What are stacks? Give an example where they are useful.
What are the syntactic rules to be avoid ambiguity in multiple inheritance?
What jobs can you get with a c++ certification?
class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.
What are destructors?
Is vector a class in c++?