Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
2k views

range for integer values of chars in c++

I'm reading The C++ Programming Language and in it Stroustrup states that the int value of a char can range from 0 to 255 or -127 to 127, depending on implementation. Is this correct? It seems like it ...
7
votes
4answers
3k views

Why is (void) 0 a no operation in C and C++?

I have seen debug printfs in glibc which internally is defined as (void) 0, if NDEBUG is defined. Likewise the __noop for Visual C++ compiler is there too. The former works on both GCC and VC++ ...
4
votes
3answers
70 views

Are temporary references automatically cleared in Python?

This is basically a question about the lifetime of temporaries. If a function returns an object, but the reference is not assigned to a variable and is only used to call a method on the returned ...