Computer Science, asked by Akshajggupta, 7 months ago

Reena is trying her hand at C++ programming . Which type of language is he using ?

Answers

Answered by paras4099
1

Assembly language is processor specific. ... Using ASM to optimize certain tasks is common for C++ programmers, but will require special considerations, because ASM is not as portable. You do not have to understand assembly language to program in C++, but it does help to have an idea of what's going on "behind-the-scenes".

hope it helps you

please mark as brainlist

and please follow me

Answered by DrNykterstein
4

C++

C++ is a general purpose, cross-platform, high level, object-oriented programming language which was created by Bjarne Stroustrup as an extension of the C programming language.

Applications of C++ :-

  • It can be used to design video games, which are of high performance because, In C++, you can manually manage the memory.
  • It is used to develop Operating Systems. For Example, Some parts of Apple OS, Microsoft Windows OS are written in C++.
  • It is used to create Graphical User Interfaces, It has got a ton of libraries so.
  • C++ has a good control over the hardwares So it is also used to program Embedded systems like smartwatches, medical equipment systems, calculators, e.t.c,

Data Types in C++ :-

There are 8 predefined data types in C++:

  • int : Refered to as Integer, has size of 2 or 4 bytes as the system architecture.
  • float : Floating point, used to store decimal number, usually has size of 4 bytes.
  • double : Similar to floating point but with more precision. Has size of 8 bytes.
  • char : A single letter, has size of 1 byte.
  • wchar_t : wide character, has size of 2 bytes.
  • bool : Conditional data type, has only two values true or false, Has size of 1 byte.
  • void : empty data type or none, has size of 0 byte.
Similar questions