answersLogoWhite

0

What is C plus plus mainly used for?

Updated: 8/11/2023
User Avatar

WaltsPC

Lvl 1
12y ago

Best Answer

C++ is a general purpose programming language. It has imperative, object-oriented and generic programming features, while also providing the facilities for low level memory manipulation. Source: Wikipedia.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

This program is a timer I made a while back:

#include <stdio.h>

int main();

{

int num=0;

int start=0;

int start2=0;

/*The code goes in order like:

system("CLS"); // This clears all characters in console window

printf(" 30");

Sleep(1000); //Sleeps for 1 second, using 1000 milliseconds

*/

while (start2 <= 999999999999999) //The 9's are used for how many times can you restart the program

{

system("CLS");

printf("What time do you want the timer to start from(0-99999999): ");

scanf("%d", &num);

system("CLS");

for (start = num; start > 0; start--) /* for ( init-expression ; cond-expression ; loop-expression )*/

system("CLS");

printf(" %d", start);

Sleep(700); //Sleep for 700 milliseconds

}

system("CLS");

printf(" DONE!!!\n\n (Press 'enter' to continue.)");

getchar();

getchar();

system("CLS");

printf(" Thanks for trying!\n\n (Press 'enter' to start over.)");

getchar();

start2++;

}

return 0;

}

Hoped this helped :D

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

It's written as C++ (different from C# or C sharp). It is very powerful and versatile.

It is a high-level programming language with an advanced structure and it's compiled into .exe files which allow it to work at binary level, making it very efficient to run.

It's used to in a lot of the programs we see today, compiled and ready to use.

This answer is:
User Avatar

User Avatar

Wiki User

7y ago

Programming in C++ means designing and writing a computer program using the C++ programming language. C++ is a high-level, machine-independent language which must be converted into machine-dependent code by a compiler.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

There is no language called c plus. There is c, and there is c plus plus, but no c plus.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

C++ is used for just about everything.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is C plus plus mainly used for?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is C plus plus a form of Calculus?

C++ is a programming language dealing mainly in the creation and manipulation of GUIs.


What is C Plus Plus?

C++ is a High-level programming language developed in Bell Laboratories. It is an object-orientation extension onto C. It is widely used today, and is the basis for some operating systems and most computer programs/applications. It was created mainly by Bjarne Stroustrup.C++ is "C with classes".


The mainly used programming language to Windows XP is?

C, C++, C# I think.


What is the mean c plus plus in machine code?

It is used to distinguish between the C or C++


Which language is used for windowsxp?

Mainly C and C++ and a bit of assembly language.


Why functions are not used in c plus plus?

Of course they are used. Both stand-alone and class-member functions are used in C++.


What is the C language used for?

Programming.


What is c plus plus primarily used for?

Programming.


Is c plus plus can be used in game programming?

yes! why not! this c program is used in ATM servicesand also in games.


Why is alcohol a droog?

If I recall correctly, the droogies mainly used Moloko-plus ... with the "plus" being mainly "synthomesc", presumably a hallucinogen ... as opposed to alcohol.


What is diffence between c and c plus plus?

main difference b/w c and c++ is that c is procedural language whereas c++ is object oriented language also classes are not used in c but in c++ classes are used.


Which compiler is used for writing c plus plus exception handling programs?

C++ compiler, obviously, a C compiler won't do.