The C++ programs are stored with
extension
C++ प्रोग्राम एक्सटेंशन के साथ संग्रहीत
होते है
Select one:
e..CPP
.CPP
6..C
.C
c...
..
d. .BAK
. BAK
Answers
Concept Introduction:-
Data which has been handled and organised and structured and putting data into context makes decisions easier.
Explanation:-
We have been provided a question
We need to choose from the given alternatives the correct option
The correct option is .CPP
It is because The purpose of these conventions is to provide a uniform interpretation of file names. One reason for this is that it is easier to make tools which base their behaviour on the file name extension. There are two kinds of include files in C++: those which contain code that is accepted by both ANSI-C and C++ compilers and those which contain code that is only accepted by C++ compilers. It is appropriate to distinguish between the two in order to avoid unpleasant compilation errors (from using the wrong kind of include file). If a ".cc" file contains a large number of function definitions, the object file produced by the compiler may be unnecessarily large. In order to obtain the smallest possible executable files, it is necessary to have a separate file for each function definition. This is because the standard UNIX linker ld links all functions in an object file even if only one of them is actually used. It is especially important to remember that virtual functions are always linked. [Compilers based on Cfront refer to these via so-called virtual tables.] On the other hand, there are problems in managing a large number of files, since sufficiently powerful tools are not currently available. Also, the time necessary to compile a program consisting of a large number of files is longer.
Final Answer:-
The correct answer is option is .CPP.
#SPJ1