What does n mean in c++?



What does n mean in c++?..

Answer / Chhabinath Ram

In C++, n is often used to represent an integer variable that counts or iterates through something. Its value may change as the program runs.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

How does a copy constructor differs from an overloaded assignment operator?

1 Answers  


Where is atoi defined?

1 Answers  


Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);

2 Answers  


How did c++ start?

1 Answers  


What is object in c++ example?

1 Answers  


What is function prototyping?

1 Answers  


When do we run a shell in the unix system?

1 Answers  


print first nodd numbers in descending order

7 Answers  


difference between the c++ and c languages

4 Answers   Wipro,


What is c++ 11 and c++ 14?

1 Answers  


. If employee B is the boss of A and C is the boss of B and D is the boss of C and E is the boss of D. Then write a program using the Database such that if an employee name is Asked to Display it also display his bosses with his name. For eg. If C is displayed it should also display D and E with C?

1 Answers  


How can I learn dev c++ programming?

1 Answers  


Categories