Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
8answers
890 views

What is the pythonic way to detect the last element in a python 'for' loop?

I'd like to know the best way (more compact and "pythonic" way) to do a special treatment for the last element in a for loop. There is a piece of code that should be called only between elements, ...
3
votes
5answers
129 views

How could this code behave as I saw?

I have a C++ application that had a one time assertion failure that I cannot reproduce. Here is the code that failed once: unsigned int test(std::vector<CAction> actionQueue) { unsigned int ...
1
vote
1answer
52 views

Fencepost conditions and portability for using of snprintf()?

Given the following code: const int size = 20; char buffer[size]; // From the Linux man page for snprintf(): // // The 'res' is the number of bytes that would be written to buffer had size been // ...
1
vote
3answers
345 views

Logical error with functions in C

I'm a junior student in IT. I am facing a problem with the output of the program. The idea of the program is that I should use functions to read an array of 10 elements, then get the average of the ...
0
votes
4answers
88 views

Elegant Solutions to the Fencepost Problem (with Strings)

What I'm referring to is concatenating Strings with a certain String in the middle, such as concatenating sentences separated by a period, or parameter lists with a comma. I know you can use ...