answersLogoWhite

0

Yes.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you Open a text file as C plus plus source code?

All C++ source code is is a text file with the .cpp extension. So if you save your code as *****.cpp then it is automatically C++ source code.


What is the code for online leave management system in cpp?

tekle negn


Can you collect cpp and ei benefits together in Canada?

It is possible to collect both CPP and EI consecutively; however, there may be a small chance where the CPP amount can be subtracted from EI benefits. Eligibility requirements must be met in order to receive both.


What do the initials CBF and CPP stand for?

CPP


Is it possible to get the radio code for a Daewoo car with the VIN number?

It's easy enough to remove the radio, the code is on the back


When was CPP Group created?

CPP Group was created in 1980.


Will particular C program be compatible for both g c c and DEV Cpp compiler?

That is possible. Try it.


How will you recover a file if it is OBJ file and you want to change it to CPP file?

You cannot. Object code files are machine code files that have yet to be linked. There is no way to convert object code back to its original source code.


Major difference between java and cpp?

CPP typically stands for the C PreProcessor, which does macro expansion on C source code. What I suspect you want to know are the differences between C++ and Java. See the links below for more information on that topic.


When was CPP Studios Event GmbH created?

CPP Studios Event GmbH was created in 1983.


How do you turn into a puffle on cpP?

This was only possible during the Puffle Party 2012 yet. Although you might get to turn into a puffle next party.


How do you write a program to illustrate the concept of extern variable?

In order to use extern you have to have at least two files. In first one, let's call it file1.cpp, you will define a variable using extern (in this case belongs to int):...extern int myVar = 0;...Then in file2.cpp file where you have main() you need to write following:extern int myVar;Do not initialize the variable in file2.cpp, or you code will not compile.