Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
6answers
1k views

What does mean for a name or type to have a certain language linkage?

According to (c) ANSI ISO/IEC 14882:2003, page 127: Linkage specifications nest. When linkage specifications nest, the innermost one determines the language. A linkage specification does not ...
24
votes
4answers
1k views

Are there machines, where sizeof(char) != 1?

Are there machines (or compilers), where sizeof(char) != 1 ? Does C99 standard says that sizeof(char) on standard compliance implementation MUST be exactly 1? If it does, please, give me section ...
23
votes
3answers
929 views

Deprecation of the static keyword… no more?

In C++ it is possible to use the static keyword within a translation unit to affect the visibility of a symbol (either variable or function declaration). In n3092, this was deprecated: Annex D.2 ...
22
votes
5answers
1k views

C++11 and the Lack of Polymorphic Lambdas - Why?

I've been reviewing the draft version of the C++11 standard. Specifically the section on lambdas, and am confused as to the reasoning for not introducing polymorphic lambdas. For example, amongst the ...
22
votes
9answers
448 views

What can you do in C without “std” includes? Are they part of “C,” or just libraries?

I apologize if this is a subjective or repeated question. It's sort of awkward to search for, so I wasn't sure what terms to include. What I'd like to know is what the basic foundation ...
19
votes
7answers
442 views

Rephrased: list of platforms supported by the C standard

This is a rephrased version of an earlier question to better conform to the site's requirement. Does anyone know of platforms supported by the C standard, for which there are still active development ...
19
votes
4answers
728 views

Standard Library Containers with additional optional template parameters?

Having read the claim multiple times in articles - I want to add this question to Stackoverflow, and ask the community - is the following code portable? template<template<typename T, typename ...
18
votes
2answers
258 views

Are the platforms covered by the C standard still in use? [closed]

Possible Duplicate: Rephrased: list of platforms supported by the C standard The C standard is very loosely defined: - it covers two's complement, ones' complement, signed magnitude - ...
16
votes
2answers
228 views

Why is taking the address of a destructor forbidden?

C++ standard at 12.4.2 states that [...] The address of a destructor shall not be taken. [...] However, one can without any complaints by the compiler take the address of a wrapper around a ...
15
votes
7answers
4k views

C++ source in unicode

What is the standard encoding of C++ source code, and does standard even say something about it? For example, can I write C++ source in UNICODE? Like, use non-ASCII characters in comments? Can I use ...
14
votes
3answers
164 views

The actual result of name resolution in the class template is different from the c++ 03 standard

I test the code in the c++ standard ISO/IEC 14882-03 14.6.1/9 on Xcode 4.1 and Visual Studio 2008. The outputs of the two compiler are both different from the expected result of the standard. The ...
13
votes
2answers
318 views

Why doesn't C++ support dynamic arrays on the stack? [closed]

In C99 this was legal: void f(size_t sz) { char arr[sz]; // ... } However, this - dynamically sized stack arrays - has been dropped in C++, and not seeing a return in C++11. AFAIK C++ was ...
12
votes
3answers
368 views

Why 1103515245 is used in rand?

I'm talking about this surprisingly simple implementation of rand() from the C standard: static unsigned long int next = 1; int rand(void) /* RAND_MAX assumed to be 32767. */ { next = next * ...
11
votes
1answer
242 views

Will std::string always be null-terminated in C++0x?

In a 2008 post on his site, Herb Sutter states the following: There is an active proposal to tighten this up further in C++0x and require null-termination and possibly ban copy-on-write ...
11
votes
4answers
177 views

puzzled by compiler warning that suggests compound assignment of int8_t promotes to int

I can usually understand the reason behind a compiler warning, but this one seems just plain wrong. #include <stdint.h> uint8_t myfunc(uint8_t x,uint8_t y) { x |= y; return x; } ...
11
votes
3answers
448 views

Why not enforce 2's complement in C++?

The new C++ standard still refuses to specify the binary representation of integer types. Is this because there are real-world implementations of C++ that don't use 2's complement arithmetic? I find ...
11
votes
2answers
311 views

Is a C++ preprocessor identical to a C preprocessor?

I am wondering how different the preprocessors for C++ and C are. The reason for the question is this question on a preprocessor-specific question where the paragraph of the standard that addresses ...
11
votes
3answers
203 views

C standard addressing simplification inconsistency

Section §6.5.3.2 "Address and indirection operators" ¶3 says (relevant section only): The unary & operator returns the address of its operand. ... If the operand is the result of a unary * ...
10
votes
5answers
479 views

c++0x standard library reference manual

I've been coding in C++ for years and recently heard that there's a new revision of the C++ standard coming along. I've studied the standard drafts and found out that there's a lot of new stuff that ...
9
votes
2answers
271 views

Empty array declaration - strange compiler behavior

I've found a strange looking piece of code in a project I have to maintain. There's an empty array member of a class which doesn't lead to an compiler error. I've tested some variations of such a code ...
9
votes
2answers
142 views

Exact meanings of Should and Shall in the C++ standard

Possible Duplicate: Why are software requirements always phrased with “shall” instead of “will”? I've been reviewing the C++ standard 03 version. And I'm beginning ...
9
votes
1answer
397 views

Pointer to member conversion

I just found the following paragraphs in c++03 standard draft relevant to pointer to member conversion. 4.11/2 Pointer to member conversions An rvalue of type “pointer to member of B of type cv ...
9
votes
4answers
193 views

array initialization, is referencing a previous element ok?

const QPointF points[] = { QPointF(r.left() - i, r.top() - i), QPointF(r.right() + i, r.top() - i), QPointF(r.right() + i, r.bottom() + i), QPointF(r.left() - i, r.bottom() + i), ...
9
votes
9answers
3k views

Are constant C expressions evaluated at compile time or at runtime?

If I write a #define that performs an operation using other preprocessor constants, is the final value computed each time the macro appears at runtime? Does this depend on optimizations in the ...
8
votes
2answers
123 views

Is there a C project Default Directory Layout?

I've always wanted to know if there is a default directory layout for C projects. You know, which folders should i put which files and such. So I've downloaded lots of project's source codes on ...
8
votes
3answers
179 views

Base pointer to array of derived objects

Following a question asked here earlier today and multitudes of similary themed questions, I'm here to ask about this problem from stadard's viewpoint. struct Base { int member; }; struct Derived ...
8
votes
4answers
101 views

Is valid casting an `enum` to other `enum` in [C]?

I have two enums. enum A { A1=1, A2=2 } enum B { B1=1, B2=2 } Is this valid by standard of C? A a = A1; B b = a; (compiled well with Clang, but I can't sure this is standard or extension ...
8
votes
3answers
195 views

What does the C standard say about pointers to structs and their first member?

Consider the following two struct: struct a { int a; }; struct b { struct a a_struct; int b; }; the following instantiation of struct b: struct b b_struct; and this condition: if ...
8
votes
8answers
6k views

Why default return value of main is 0 and not EXIT_SUCCESS?

The ISO 1998 c++ standard specifies that not explicitly using a return statement in the main is equivalent to use return 0. But what if an implementation has a different standard "no error" code, for ...
8
votes
8answers
3k views

is size_t always unsigned?

As title: is size_t always unsigned, i.e. for size_t x, is x always >= 0 ?
8
votes
5answers
3k views

Compliance test for OpenID providers

What automated standards-conformance tests are there for OpenID providers? I'm making changes to the implementation of an OpenID provider, to bring it from version 1.1 of the standard to version 2.0. ...
7
votes
1answer
300 views

Django Celery : use python standard logging in celery

I need help asap. My company just asked me to implement celery in the system that I am in charge of right now, and in the previous version of the system, it already used python standard logging. My ...
7
votes
6answers
4k views

PHP Mass Email Best Practices? (PHPMailer + Gmail)

I'm thinking about how to handle sending large amounts of email from my web applications, and whether there are any best practices for doing so. StackOverflow is already labeling this as 'subjective', ...
6
votes
3answers
128 views

Is a compiler allowed to add functions to standard headers?

Is a C compiler allowed to add functions to standard headers and still conform to the C standard? I read this somewhere, but I can't find any reference in the standard, except in annex J.5: The ...
6
votes
1answer
173 views

Is unsigned integer subtraction defined behavior?

I have come across code from someone who appears to believe there is a problem subtracting an unsigned integer from another integer of the same type when the result would be negative. So that code ...
6
votes
5answers
158 views

Python standard library function for rearranging a list

I am wondering if there is a standard library function in Python which will rearrange the elements of a list like below: a = [1,2,3,4,5,6,7] function(a) print a a = [1,7,2,6,3,5,4] It should get ...
6
votes
1answer
132 views

What's the difference of ANSI Smalltalk and Smalltalk-80?

I discovered there is no mentioning about thisContext in ANSI Smalltalk specification (draft). I assumed ANSI Smalltalk as standardized Smalltalk-80, so I can't understand why it's not there. What's ...
6
votes
4answers
601 views

Standard or custom exception in C++?

For a library code, is it better practice to create and throw custom exception class (library::Exception), or just throw standard exceptions (runtime_error, invalid_argument, etc.)?
6
votes
7answers
397 views

Is it legal to use memset(,0,) on array of doubles?

Is it legal to zero array of doubles (using memset(,0,)) or struct containing doubles ? The question implies two different things: (1) From the point of view of C standard, is this UB of not ? (on a ...
6
votes
1answer
209 views

Once a part of the standard - will boost library lose its boost namespace and will be moved to std?

Once a Boost library (I have read that ten Boost libs are considered to be a become a part of Standard Library) becomes a part of Standard Library - is it going to keep it's boost namespace or the ...
6
votes
2answers
181 views

Minor (unimportant) defect in the standard?

This question has no practical issues associated with it, it is more a matter of curiosity and wanting to know if I am taking things too literally ;). So I have been trying to work towards ...
6
votes
2answers
1k views

Detecting HTML5 Drag And Drop support in javascript

I'm trying to detect the HTML5 Drag And Drop support in javascript. Modernizr seems to not handle this test case. Any idea ? Regards
6
votes
6answers
562 views

Overloading global swap for user-defined type

The C++ standard prohibits declaring types or defining anything in namespace std, but it does allow you to specialize standard STL templates for user-defined types. Usually, when I want to specialize ...
6
votes
2answers
2k views

How to detect Render Mode of browser for current page?

I know that modern browsers generally have two render mode: standard mode and quirk mode. The browser detects the heading DocType. The question is how to detect render mode of current page at ...
5
votes
2answers
203 views

C standard on negative zero (1's complement and signed magnitude)

All of these functions gives the expected result on my machine. Do they all work on other platforms? More specifically, if x has the bit representation 0xffffffff on 1's complement machines or ...
5
votes
1answer
100 views

Where do UUID namespaces come from?

The UUID specification defines 4 predefined namespaces which it describes as "potentially interesting" - meaning among other things, "if other people have generated UUIDs in this namespace you can ...
5
votes
5answers
221 views

Why is 'object slice' needed in C++ ? Why it is allowed ? For more bugs?

Why C++ standard allow object slice ? Please don't explain c++ object slice concept to me as I knew that. I am just wondering what's the intention behind this c++ feature(object slice) design ? ...
5
votes
2answers
104 views

Block scope linkage C standard

The following identifiers have no linkage: an identifier declared to be anything other than an object or a function; an identifier declared to be a function parameter; a block scope identifier for an ...
5
votes
2answers
972 views

VS2010 C and C++ - enforce ANSI compliance for Linux/gcc compatibility?

I'm taking a class in which I'm required to write some C++ apps for Linux. I really, really dislike the dev tools available under Linux, but I love VS2010. Is there any sort of compiler switch which ...
5
votes
2answers
137 views

Is there a standard representation for HTML forms?

I am working on a system that needs to represent an html form with typical elements like text field, select box, labels etc but it can only speak JSON or XML, not HTML. I could always write my own ...

1 2 3 4 5