answersLogoWhite

0

What does 10 increment mean?

Updated: 9/17/2023
User Avatar

Wiki User

14y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What does 10 increment mean?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does Minimum Increment Value mean?

Wow, how old are you, 10? I'm not answering you find out somewhere else, I guess.


Define mean annual increment?

The definition of mean annual increment is the average growth per year. This may be used to measure any form of growth.


Shall bgr energy will give increment to employees?

yes. increment will be around 10 to 15% max i beleive. but not yet given


What does Bid Increment mean?

Starting bid is the least amount of money they'll accept for an item, and bid increment is the amount it goes up with each bidder. For example: Starting bid is $10, and goes up by $5 increments: $15, then $20, etc.


What is the meaning of plus plus in c?

++a (plus plus a) is pre-incrementing operator to aa=10;printf("%d",++a); /* it will print 11 as ++a increment first a by 1 then prints it */printf("%d",a++); /*it will printf 10 as it is post _ increment operator , it prints the value a first then increment it by 1 */


Why there is only 2 plus in c plus plus languagewhy not 3 or 4 plus?

I assume by 2 plus you really mean ++. This is the increment operator which is used to increment the operand. If placed before the operand, the operator evaluates the incremented operand (prefix increment). If placed after the operand, the operator evaluates the non-incremented operand (postfix increment). +++ and ++++ are meaningless but are assumed to mean incrementing an increment. If you wish to increment an increment, you must use the compound expression ++(++) or (++)++. Thus for the variable x, prefix incrementing twice would be achieved with ++(++x), while postfix incrementing twice would be achieved with (x++)++. You can also mix the two, such as ++(x++) or (++x)++, both of which would increment x twice but would evaluate the increment of x. If postfix increment is not a requirement, it would be much easier to use the compound expression x+=n, where n is the amount you wish to increment. This is the same as saying x=x+n.


Can you increment the value of a variable by 2 using any increment operator?

There is no such increment operator in C language to increment the value of a variable by 2.An increment operator only increments the value by 1. however you can apply the increment operator twice to get an increment of 3. No: you cannot: ++(++a) won't compile. Yes. Example: a += 2; but += is not an increment operator, it's a shorthand of a=a+2; just like a++ is a shorthand for a= a+1


What is increment and decrement operators?

increment operator increments the variable by 1 at a time and decrement operator decrements by 1 in this we have two types increments pre_increment and post increment. In pre_increment the original value is incremented by 1 and assign the new value n=10 i=++n then i =11 In post increment the original value is assigned and after it increments value by 1. n=10 i=n++ then i=10 example: k=5 i=k++ + ++k i=? ans: in first k++ value is 5 second ++k value is 7 i=5+7=12


What is the percentage of increment an employee can expected?

None. They can earn an increment but may not expect anything!None. They can earn an increment but may not expect anything!None. They can earn an increment but may not expect anything!None. They can earn an increment but may not expect anything!


Why are increment and decrement used in c?

To increment or decrement a value


What is a small increment of time?

the smallest increment of time is... miliseconds.


Is x plus equals y is post increment or pre increment?

The '+=' operator behaves like a pre increment operator.