What is the C-style character string?
No Answer is Posted For this Question
Be the First to Post Answer
What is the best book for c++ beginners?
Check for Balanced Parentheses using Stack?
Design a program to input a date from user in the form day/month/year (e.g. 2/6/2000) and report whether it’s a valid date or not. The program should take account of leap years. You will need to know that a leap year is a year that is exactly divisible by 4, except that century years are only leap years if they are divisible by 400.
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
What character terminates all character array strings a) b) . c) END
What is abstraction in c++ with example?
What is difference between class and function?
Does defining a function inline mean that it wont push and pop things on/off the stack ...like parameters and the return the address??
What are the extraction and insertion operators in c++?
What are the two main components of 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.
What are the two types of comments?