answersLogoWhite

0

Sometimes, it is. Some implementations compile C++ code into C code, and then compile the C code.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

In C plus plus what sign do all preprocessor directives start with?

all preprocessor directives start with #(hash) symbol in both c & c++


How is the newline formed in c plus plus preprocessor?

\x0a in unix, \x0d\x0a in Win/Dos


What price of software c plus plus?

The price of the software c plus plus can vary depending on where it was purchased. The average price for the software c plus plus varies between $20 and $30. There are also copies that can be obtained for free.


How does c plus plus code compiled?

When you invoke the compiler, the preprocessor (also known as the precompiler) runs first to process all the precompiler directives and macros; the lines beginning with the pound symbol (#) such as #define and #include. The preprocessor also strips out all of the comments. The preprocessor achieves this by creating one or more temporary, intermediate files containing nothing but C++ code. The compiler then compiles these intermediate files into object code which the linker uses to create the final executable.


Why study c plus plus programming?

we are using c plus plus programming for developing object oriented programing software.


Who invented turbo c plus plus?

Borland Software Corporation.


Differentiate C plus plus and Turbo C?

Turbo C is a software where C or C++ programming environment resides in.But C++ is itself a programming language.


Where do you get c plus plus software?

A good open source IDE for C++ would be Code::Blocks or Notepad++.


What does cpp mean?

It stands for Canadian Pension Plan (the govt' retirement pension)its mean c plus plus ++,its a computer thingAnswercpp can also refer to the C Preprocessor, which a C compiler uses to expand #include and #define statements before the compiler proper compiles the source code into object code.


What is preprocessor derective in C language?

#if, #define, #include just to name a few


Is macro a recursive function?

If you're asking if the c preprocessor supports recursive macros, the answer is no. The preprocessor is single-pass and since the "function" must be defined before it can be referenced, it can not be recursive.


Which operator not overloaded in c plus plus?

The if statementex.if (index < 5)printf("Index is less than 5\n");elseprintf("index is greater or equal to 5\n");(You can also replace the "if" with a "?" and the "else" with a "?" -- no, that would be syntax error)