Write a Program for read a line from file from location N1 to N2 using command line arguments. Eg:exe 10 20 a.c
No Answer is Posted For this Question
Be the First to Post Answer
What are the sizes and ranges of the basic c++ data types?
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 is the best c++ book?
Define private, protected and public access control.
What is object oriented programming (oop)?
What is a "Copy Constructor"?
What are the steps in the development cycle?
What is diamond problem in c++?
How to construct muliton object
Tell me difference between constant pointer and pointer to a constant.
Explain what is class definition in c++ ?
Why do we use constructor?