Is c++ high level programming language?
No Answer is Posted For this Question
Be the First to Post Answer
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
What is a literal in c++?
What is the purpose of the "delete" operator?
What are the two types of comments, and how do they differ?
What do you mean by vtable and vptr in c++?
Write the program form Armstrong no in c++?
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.
whats the size of class EXP on 32 bit processor? class EXP { char c1; char c2; int i1; int i2; char *ptr; static int mem; };
What ANSI C++ function clears the screen a) clrscr() b) clear() c) Its not defined by the ANSI C++ standard
Why is standard template library used?
What is the size of pointer ? Also size of pointer in 64 bit pointer
How can I learn c++ easily?