3 Answers - Sort by: Date | Rating
It doesn't stand for anything. In C, the operator ++ means increment, so
int i = 0;
i++;
printf("%d",i);
would print 1. So in the name of the language, it's something of a joke, and implies that C++ is an incremental improvement to C.
int i = 0;
i++;
printf("%d",i);
would print 1. So in the name of the language, it's something of a joke, and implies that C++ is an incremental improvement to C.
0
0
Previously C was developed. But After C is developed or modified to more advance such as object oriented language which have many more Facility then C.
So A newly developed language is called C. For it is developed from it.
Shortly, ++ Stands for increment in C++.
And
if we write
int i=1;
i++;
in c++ the value of i is increased to 2. That means it stands for increment.
So A newly developed language is called C. For it is developed from it.
Shortly, ++ Stands for increment in C++.
And
if we write
int i=1;
i++;
in c++ the value of i is increased to 2. That means it stands for increment.
0
0
- How To Make A Simple Programming?
- Where Can I Learn DirectX Or OpenGL In C++?
- What Does |= And &= Means In C++?
- What Is Input From Technology Means?
- Write A Program In C/C++ To Implement Cohen-Sutherland Line Clipping Algorithm. In This Implementation, Consider Two Cases Of A Line: Totally Visible, Totally Invisible, Against The Rectangular Clipping Window?
- Can Somebody Tell Me Why This Code Will Not Compile: #include "Stdafx.h" //added This Include #include //added Stream To Io Using Namespace Std; Int Main() { //declare Variables Int Choice=0; Std::cout?
- Sample Program Which Requires 2 Numbers, Input 1 And Input Which Will Be The Start Of A Fibonacci Series?
- Sample Program Which Requires 2 Input For Fibonacci Series?
- Write A Program That Receives An Integer As Input And Outputs The Product Of Its Digits. E.g. 1234 = 24, 705 = 0, 478 = 224 Using C++?
- What Is Input Stream?
- How Do I Input Answers?
- How Do I Write A Program To Compute The Standard Deviation Of 5 Input Values. Create A Constant For The Number Of Values (5). Ask The User For The Numbers. Next, Compute The Mean (sum Divided By 5)?
- How We Can Sort Link List In C++?
- What Are Link Lists In C++?
- Where Can I Download C++ Programmes File?
- How To Figure Out The 2 Operations That Result In The Given Numbers On An Input/output Machine?
- What Do U Mean By Abstraction And Encapsulation?
- Explain The Fundamental Data Types In C Programming?
- How Is A Class Different From A Structure And Union?
- Technology Used For Input In Pda Or Palmtop?
- I Am A Student Of Bs CS. It Is My Importantt Question Please Give Me Best Answer. My Question Is That "Why We Call C Language A C Language"?
- What Dose Input Mean?
- What Is Method Overloading?
- C++ Program Source Code To Check Whether A Number Is A Special Number Or Not?
- How To Input Cd Deck?
- What Does K-6 Stands For?
- Do You Know What U Of T Stands For?
- What Is Ie Stands For?
- What Does U.n Stands For?
- What Does LED Stands For?
- SAARC Stands For What ?
- What Is Lb Stands For?
- What Is Latin For Thus It Stands?
- If A Guy Stands You Up Should You Say Its Over?
- What Does P Stands For In Pollution?
- If E.g. Stands For Example Than What Does Ex. Stand For?
- What Does LEDs Stands For?
- What Is Latin For " Thus It Stands"?
- What Does FTP Stands For?
- What Does NBA Stands For?

New Comment - Comments are editable for 5 min.