The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
88 views

Why I encounter a NULL terminating character at start of a string when I go backwards through it?

I found the following piece of code embedded in a C++ project. The code goes backwards through a C-style string. When I saw this I thought this should result in undefined behaviour. But it seems to ...
1
vote
4answers
45 views

Decrement value in mysql but not negative

I want to decrement a value when user delete it in php and mysql. I want to check not to go below than 0. If value is 0 then do not decrement. mysql_query("UPDATE table SET field = field - 1 WHERE id ...
0
votes
2answers
135 views

jQuery: Stop decrementing textbox value if value equals 0

What I have: I have a readonly textbox and two links. The first link increments the value of the textbox by 1 whereas the second link decrements the value by 1. What I need: I need the textbox ...
0
votes
1answer
90 views

Simple increment/decrement counter

I would like to make a simple counter in Powershell. It must prompt the user whether they'd like a higher or lower number. The starting number must be 0, it cant be lower than zero or higher than 10. ...
-1
votes
1answer
77 views

How to add increment and decrement functions to this piece of a counter? [closed]

Essentially, I need help writing an increment and decrement code in my lab. I've managed to do the stuff beforehand, but I want to wrap my mind around what I'm doing with this. My first thought is ...
-3
votes
1answer
65 views

FUndamentals of c -_- [duplicate]

#include<stdio.h> int main() { int a=2; int j=++a + ++a + ++a + ++a ; printf("%d",j); } //please tell me the execution of this fragment ... //i am using GCC ubuntu (12.04) ...
0
votes
2answers
91 views

decrement value of a key list

i have a list of keys:values with integer values attached to particular keys... these integer values represent the number of letters in a particular hand... for example, here's a hand - hand = ...
0
votes
1answer
99 views

How to decrement an array in Java?

This is my code to start. static char[] a1 = {'a', 'b', 'c', 'd', 'e'}; static char[] a2 = {'a', 'c', 'd', 'c'}; for (int i = 1; i <= 5 ; i++) { if( a1[i] == a2[i] ){ ...
-4
votes
10answers
103 views

increment operator more purpose? [duplicate]

I was wondering if the increment and decrement operators ( ++ -- ) have more purpose to it than its plain use to make the code more simple maybe: i++; is more efficient than: i = i + 1; ?
0
votes
0answers
19 views

General Programming: n++ vs ++n [duplicate]

Could someone knowledgeable please explain to me the difference between using the increment operator before and after the variable? What is the practical difference between ++n and n++ ? (Ditto --n ...
0
votes
2answers
120 views

limit x value during increment / decrement with jQuery previous & next button

There are previous and next buttons below the main image, there is x amount of photos (7 in this case), I need to limit the value that's being added to x amount so that it can be only within the range ...
-4
votes
3answers
122 views

Consider this code: “int s = 20; int t = s++ + --s;”. What are the values of s and t? [closed]

cut to the chase, the answer is "s is 20, and t cannot be determined." I understand the part that s is 20, but why t cannot be determined? Please help me!
2
votes
1answer
205 views

MySQL Auto Increment Columns on TRANSACTION, COMMIT, and ROLLBACK

When using MySQL START TRANSACTION and the decision is made by MySQL to roll back - In the case that a table had an AUTO_INCREMENT column - does the column get... decremented during the roll back? ...
2
votes
2answers
91 views

PHP Increment/Decrement value from xml

This is my xml. <episodes> <episode> <series_name>Test</series_name> <season_number>1</season_number> ...
-7
votes
4answers
134 views

Why 2 and -2 instead of 1 and -1? [closed]

I wrote this very simple program: #include <iostream> using namespace std; int main() { int x = 0; cout << x++<<endl; cout<<++x<<endl; int y = 0; ...
-7
votes
2answers
120 views

increment and decrement operator confution in JAVA [closed]

Please take a look at the small segment of code: int e = 20; System.out.println(e++*e--*++e*e); Can anyone explain the output please? Thanks.
0
votes
1answer
79 views

C# using ternary operator. When?

Having trouble with using ternary operator. ... char symbol = str_base[i]; int count = 1; ... (count == 1) ? str_rle += symbol : str_rle += count.ToString() + symbol; Getting such error: Only ...
0
votes
1answer
44 views

algorithm, decrement and increment [-100, 100]

I'm trying to create a cycle and decrement, increment an int. int val = 0; while(true){ if(val < -100) val += 1; else val -= 1; myFunction(val); } It's an infinite cycle, I know but I ...
1
vote
0answers
78 views

logic design verilog [closed]

Forgive my bad explanation and my bad english. I've uploaded a picture of the AU of the ALU. the objective is to have only one module to use for all the bits. it's a 4 bit alu with 4 functions ...
1
vote
2answers
53 views

python unclear behavior when decrementing in try-except

Is there any special behavior when decrementing a variable in the except clause? sid keeps incrementing until it first gets into the exception clause, then it just keeps the same value for the rest ...
1
vote
2answers
70 views

Meaning of Variable / Operator shorthand in Java [closed]

I have a question about a piece of code that I am trying to translate into another language. Unfortunately, I am not very versed in Java. In particular, in the following snippet of code, there is a ...
0
votes
0answers
51 views

how to decrease number of descriptors when using SIFT?

I have used SIFT to find keypoints and descriptors,now I want to decrease number of descriptors because for example for an image with size 256x256 it gives me 120000 descriptors which is time ...
1
vote
2answers
267 views

Efficient methods for Incrementing and Decrementing in the same Loop

Suppose some situations exist where you would like to increment and decrement values in the same for loop. In this set of situations, there are some cases where you can "cheat" this by taking ...
0
votes
2answers
276 views

why lvalue required as increment operand error?

Why lvalue required as increment operand Error In a=b+(++c++); ? Just Wanted to assign 'b+(c+1)' to 'a' and Increment 'C' by 2 at the same time. I'M A Beginner Just Wanted A Clarification About ...
-2
votes
5answers
139 views

want to know how this expression works?

The question is: int z, x=5, y=-10 ,a=4, b=2; z = x++ - --y * b / a; Just wanted to know the output and how --y will work for the negative value of 'y'. What will be the precedence of solving ...
2
votes
5answers
153 views

How is this behaviour of C explained?

so I was playing around with recursion in C and I am not sure why is this happening: code A int foo(int x) { if (x==0) return 0; else return foo(--x)+x; } int main() { printf("%d\n", foo(10)); ...
0
votes
0answers
126 views

Which style of increment / decrement is more Pythonic? [closed]

PEP 8 makes no mention of a preferred style for increment / decrement operations. To me it seems that if a special syntax is provided for a particular operation it should be used instead of other, ...
3
votes
2answers
221 views

Why does C++ accept multiple prefixes but not postfixes for a variable

While looking into Can you have a incrementor and a decrementor on the same variable in the same statement in c I discovered that you can have several prefix increment/decrement operators on a ...
0
votes
2answers
360 views

Javascript Basic Increment and Decrement

Why isn't dec() decreasing the value? <div id="variableTest">8</div> <label id="incButton" onclick="inc()">+</div> </br> <label id="decButton" ...
1
vote
1answer
216 views

Numeric keypad buttons to increase or decrease value of text area

I have a simple numeric keypad with buttons which work as expected. You click a button and that number is displayed in the text area. My question concerns adding 2 buttons to the keypad that will ...
0
votes
1answer
85 views

Using value before and after to analyze desired value::: Radiometric Calibration - Streaking

Let's say I have a data table that is 1x15 [21 78 33 59 90 26 88 54 36 63 72 37 48 93 56] So for my streaking equation I need to implement this: % Streaking = {[abs(Q_n - ((Q_n-1 + Q_n+1)/2))] / ...
0
votes
3answers
500 views

I tried this below code to set increment and decrement values in edittext field .But its not working why?

package com.inc.increment; import android.os.Bundle; import android.app.Activity; import android.view.Menu; import android.view.View.OnClickListener; import android.view.View; import ...
0
votes
0answers
13 views

Evaporate points not working?

I am using Drupal 7. I am using Userpoints Evaporate module, it depletes userpoints after a specified period of time. I have set it to evaporate after every 1 hour, but there is no effect on their ...
-1
votes
1answer
147 views

Python - Create a group of lists using numbers

say I have a string n = '22' and another number a = 4 so that n is a str and a is an int. I would like to create a group of lists like: list1 = [22, 12, 2] #decreasing n by 10, the last item must be ...
-1
votes
1answer
79 views

Javascript, for-loop, not carrying the value

The form that fetches the value: <input name="validatecard" type="text" id="myCardNumber"> <input onclick="isLuhn()" type="button" value="Check Credit Card" /> The Javavascript: ...
2
votes
3answers
225 views

Increment and decrements numbers

I have this text with numbers: My numbers are 04, and 0005 My numbers are 05, and 0006 My numbers are 06, and 0035 My numbers are 07, and 0007 My numbers are 08, and 0009 This is the code I always ...
1
vote
2answers
200 views

Running a thread for some seconds

I am using a media player instance to play a music file.I want to play the song for certain time then stop playing.I'm using a thread with counter decrementing but some how tis not workin properly.
1
vote
3answers
73 views

the totalAmount of increment and decrement

namespace rojak2.cs { class Program { static void Main(string[] args) { ArithmeticOperators(); } static void ArithmeticOperators() { ...
0
votes
2answers
593 views

C++ “vector iterator not decrementable”?

I am solving UVa problem. Here is the problem: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=103&page=show_problem&problem=69. And I am trying to use ...
0
votes
2answers
314 views

Actionscript 3.0 getter setter increment

private var _variable:int; public function set variable(val:int):void{ _variable = val; } public function get variable():int{ return _variable } Now if I have to increment the ...
0
votes
2answers
156 views

Decrement array length in Javascript

I just ran across this javascript snippet: myArray.length--; What does it do exactly?
0
votes
1answer
410 views

Auto Increment(+) and Decrement(-) button like time picker

Hello I'm trying to get an edit increment decrement, to no avail. I see on Time/Date palette: Time picker, but i want only one box. I'd like an edit like this: Thank You!
-3
votes
2answers
146 views

C++ decrement confusions [duplicate]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) Undefined Behavior and Sequence Points As for me a nice question was touched ...
0
votes
1answer
669 views

Substraction or decrement random access iterator pointing to begin

Consider following piece of code void foo( bool forwad ) { vector<MyObject>::iterator it, end_it; int dir; it = some_global_vector.begin() + some_position; if( forward ) { ...
1
vote
1answer
81 views

How do I concisely write x = x - 4 unless x is less than 0, in which case x = 0?

I am doing some pagination and can do @next_images_to_paginate += 4 without a problem. But @previous_images_to_paginate -= 4 doesn't because I can get negative numbers. I can't use absolute because ...
4
votes
4answers
110 views

Atypical uses for Javascript's ++ and — operators

If I recall correctly from Crockford's "Javascript: The Good Parts", he is not in favor of using the ++ or -- operators, but I also tend to recall he doesn't provide an especially strong argument ...
1
vote
5answers
2k views

Decrement a For Loop?

I can increment a FOR loop in xcode, but for some reason the reverse, namely decrementing, doesn't work. This incrementing works fine, of course: for (int i=0; i<10; ++i) { NSLog(@"i =%d", ...
0
votes
0answers
242 views

Magento double stock decrement

On our Magento, we have decided to decrease stock when an order is confirmed. However, after the order is placed, to finish the order, we go in it, invoice it, and then ship it. And at that time, the ...
14
votes
5answers
2k views

Decrementing for loop in coffeescript

I know how to do a incrementing for loop in coffeescript such as: Coffeescript: for some in something Generated Javascript: for (_i = 0, _len = something.length; _i < _len; _i++) How do I ...
0
votes
2answers
1k views

Using a Counter class to increment and decrement: java

I'm having trouble visualizing the end product of this problem: Define a class called Counter whose objects count things. An object of this class records a count that is a nonnegative integer. ...

1 2