which are the 4 members functions in c++ objects that can
either be declared explicitly by programmer or implementation
if nt available.

Answer Posted / dharmendra

default constructor , copy constructor & Destructor

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of oops?

619


What is methods in oop?

542


What is inheritance in simple words?

625


What is encapsulation oop?

576


What is coupling in oops?

595






What polymorphism means?

620


What is data binding in oops?

586


How Do you Code Composition and Aggregation in C++ ?

24196


What is abstraction encapsulation?

657


What is abstraction example?

622


What is basic concept of oop?

700


They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?

1403


What is the example of polymorphism?

556


class type to basic type conversion

1837


This program numbers the lines found in a text file. Write a program that reads text from a file and outputs each line preceded by a line number. Print the line number right-adjusted in a field of 3 spaces. Follow the line number with a colon, then one space, then the text of the line. You should get a character at a time and write code to ignore leading blanks on each line. You may assume that the lines are short enough to fit within a line on the screen. Otherwise, allow default printer or screen output behavior if the line is too long (i.e., wrap or truncate). A somewhat harder version determines the number of spaces needed in the field for the line numbers by counting lines before processing the lines of the file. This version of the program should insert a new line after the last complete word that will fit within a 72-character line.

1637