C11 is the informal name of the new standard for the C programming language, ISO/IEC 9899:2011.

learn more… | top users | synonyms

1
vote
2answers
36 views

Is support of Annex K in C11 required for a conforming implementation?

While answering a question that made use of some functions (sscanf_s and sprintf_s) that I thought were not standard C, Daniel Fischer brought to my attention that the functions in question were ...
1
vote
1answer
40 views

How is this constant expression evaluated?

when explaining constant expressions, the standard (well, draft N1570) gives thi "enlightening" example: 118) Thus, in the following initialization, static int i = 2 || 1 / 0; the ...
1
vote
0answers
34 views

Strange wording in the standard, concerning comparrison of pointers

§6.5.8\6 (converning >, <, <=, >=) If the expression P points to an element of an array object and the expression Q points to the last element of the same array object, the pointer ...
0
votes
1answer
52 views

Converting old C99 program to C11 using MinGW

I'm trying to convert an old program that is written in C99 to C11 to be compiled with MinGW. I came across this line of code here contenu[/size] = buffer; and this code output[k] = ((S[(S[i][/i] ...
0
votes
1answer
15 views

During lvalue conversion, why is the & so special and | never mentioned?

Section §6.3.2.1 (page 72) explains that An lvalue means an object i.e. piece of memory. During evaluation of expressions, the objects are converted to their values i.e. become no longer ...
2
votes
1answer
40 views

_Generic and functions with several parameters

I was reading this C11's _Generic example on Wikipedia: #define cbrt(X) _Generic((X), long double: cbrtl, \ default: cbrt, \ float: cbrtf)(X) It ...
6
votes
3answers
97 views

What is a composite type in C?

From §6.2.7.5 (page 66): EXAMPLE Given the following two file scope declarations: int f(int (*)(), double (*)[3]); int f(int (*)(char *), double (*)[]); The resulting composite type ...
0
votes
0answers
64 views

standards compliance and run time requirements [closed]

This is strictly about the C standard and a hypothetical compiler that implements it. Let's assume I have a compiler that correctly accepts valid C programs as the C ISO standard defines them. It ...
1
vote
1answer
60 views

What is the significance of “A conforming compiler may choose not to implement non-normalized floating point numbers”?

ISO/IEC 9899:2011 §5.2.4.2.2 ¶10 (p48) says: The presence or absence of subnormal numbers is characterized by the implementation- defined values of FLT_HAS_SUBNORM, DBL_HAS_SUBNORM, and ...
3
votes
1answer
177 views

How to enable c11 on later versions of gcc?

I currently use gcc 4.6.3. My understanding is that gcc by default uses the gnu89 standard and I would like to enable C11, the latest C standard. I tried: [pauldb@pauldb-laptop test ]$ gcc -std=c11 ...
0
votes
3answers
108 views

clang c11 threads.h not found

I am trying to setup a c11 thread example in xcode... but it doesn't seem to have the threads.h header, though it isn't complaning about the macro described here: ...
3
votes
3answers
118 views

What is a “byte”, according to C11?

From the C11 draft standard, Section Chapter 1 Section 3: 3.6 byte: addressable unit of data storage large enough to hold any member of the basic character set of the execution environment NOTE 1 It ...
2
votes
2answers
73 views

Are enum values resolved in preprocess time or in compile time?

When are enum values resolved? In other words, is the following code snippet standard-compliant? enum{ A, B, MAX } #if MAX > 42 # error "Woah! MAX is a lot!" #endif
0
votes
1answer
50 views

What is the scope of variables, declared in a “for” condition?

void main(void){ for(int i;;); for(int i;;); } Is this valid C code? What is the scope of i?
2
votes
1answer
95 views

C11 _Atomic access

I tried to do some searching, and some reading of the C11 spec (n1570). I just want to clarify if the following code is allowed _Atomic(unsigned int) a = 1; if (a == 0) { } Seems ...
2
votes
2answers
183 views

c11 threads on windows

I'm creating cross platform software in Visual Studio 2012 express on Windows. For obvious reasons I can't use .NET's System::Threading::Thread. I was hoping I could use the new threading features of ...
2
votes
1answer
164 views

_Alignas for struct members using clang & C11

I'm having some trouble with -Wpadded using C11 and structs. I've already read Structure member alignment with _Alignas, and I looked in the clang docs and saw that it IS supported now. Also, I'm ...
1
vote
1answer
115 views

Is it possible to add C11 support to Xcode 4.6?

I'm just wondering if there's a plugin allowing support of C11 in Xcode 4.6.
3
votes
2answers
172 views

Integer types in C

Suppose I wish to write a C program (C99 or C2011) that I want to be completely portable and not tied to a particular architecture. It seems that I would then want to make a clean break from the old ...
1
vote
1answer
52 views

Is C99 fesetround()/fegetround() state per-thread or per-process?

C and POSIX references I found online don't specify the thread-safety of C99's fesetround(). Even GNU documentation doesn't[1]. Is the state per-thread or per-process? [1] ...
0
votes
3answers
107 views

What is the default C mode for the current gcc (especially on Ubuntu)?

When I ask to see the current version of cc I get this. $ cc --version cc (Ubuntu/Linaro 4.7.2-2ubuntu1) 4.7.2 Copyright (C) 2012 Free Software Foundation, Inc. This is free software; see the source ...
7
votes
2answers
241 views

Variable length array in the middle of struct - why this C code is valid for gcc

There is some strange code which is treated as Valid C (C99, C11) by gcc 4.6: $ cat a.c int main(int argc,char**argv) { struct args_t{ int a; int params[argc]; // << Wat? ...
3
votes
2answers
462 views

std::isfinite on MSVC

The C++11 and C11 standard define the std::isfinite function. Visual Studio 2012 doesn't seem to provide it as part of the cmath or math.h, but has amp_math.h which seems to provide this function. ...
3
votes
3answers
156 views

Is there a strlen() that works with char16_t?

As the question says: typedef __CHAR16_TYPE__ char16_t; int main(void) { static char16_t test[] = u"Hello World!\n"; printf("Length = %d", strlen(test)); // strlen equivalent for char16_t ??? ...
1
vote
1answer
94 views

_Thread_local storage class specifier in C?

I read a note in the book C How to Program 7th about some new standard C storage class named _Thread_local: The new C standard adds storage class specifier _Thread_local, which is beyond this ...
4
votes
2answers
81 views

Partial assignment of struct in C99+

Sorry for bad English. Suppose the code (C99 or later): typedef struct { int a, b; } foo_t; foo_t f = { .a = 1, .b = 2 }; f = (foo_t){ .b = 3 }; What is f.a now? Does C standard say ...
7
votes
3answers
192 views

__func__ value difference between C and C++

Am i really right that C standards guarantees that _ _ func _ _ value is always the name of the enclosing function, while in C++ (i mean C++11, of course) it can be any implementation-defined string ...
3
votes
2answers
130 views

How can a macro define a valid global name based on the type passed to it?

I believe the title is self-explanatory, but here's an example to illustrate what I'm trying to accomplish: #define PASTE2(_0, _1) _0 ## _1 #define DEFINE_OPS_FOR_TYPE(TYPE) \ ...
18
votes
2answers
374 views

__func__ outside function definition

What should happened if we use predefined variable __func__ outside a function in C (C99 / C11) and C++? #include <stdio.h> const char* str = __func__; int main(void) { printf("%s", str); ...
1
vote
1answer
99 views

Creating “nested structs” without -fms-extensions?

I have a struct with some properties: struct a { char* id; int a; int b; int c; } I also have a struct with the same properties, but without the id. struct b { int a; int ...
-4
votes
2answers
153 views

Why C standards contain many unsafe functions, which are useless?

Why C standards contain many unsafe functions, which are useless (in good programs them don't use) and harmful, for example getchar? Why C standard doesn't contain instead of them the useful ...
1
vote
4answers
195 views

Is (x++, y) + (y++, x) undefined or unspecified, and if unspecified, what can it compute?

The comma sequence operator introduces a sequence point in an expression. I am wondering whether this means that the program below avoids undefined behavior. int x, y; int main() { return (x++, y) ...
9
votes
1answer
187 views

What is C11 cor 1:2012?

I just noticed that there has been a correction to the C11 standard called ISO/IEC 9899:2011/Cor 1:2012. What was changed in this update?
7
votes
1answer
79 views

What is the purpose of restrict in tmpfile_s?

From C11 draft: C11 (n1570), § K.3.5.1.1 The tmpfile_s function errno_t tmpfile_s(FILE * restrict * restrict streamptr); What is the purpose of the restrict qualifier here? Because there is ...
17
votes
1answer
166 views

Why do some C standard headers begin with 'std' while others don't?

For example, in the new C11 standard there have been added stdalign.h and threads.h. Why not stdthreads.h or align.h? Is it to avoid collisions with exiting libraries and system headers?
0
votes
1answer
61 views

Extension on shifting or arithemtic operations in standard C

Sorry for bad English. uint16_t a, c; uint8_t b = 0xff; a = b<<8; c = b*10; What is value of a and c we get? What is situation with arbitrary integer types?
1
vote
2answers
41 views

Changing of existing text in console window

Sometimes, when I install programs, I see progress bar in console window (or other, dynamic changing text). It is displayed, and changing in the same row of string. When I use printf or other ...
3
votes
3answers
343 views

Use of _Noreturn in C11 [duplicate]

Possible Duplicate: What is the point of the Noreturn attribute? C11 introduced the _Noreturn attribute to indicate that a function never returns. Except for documentation value in the ...
1
vote
3answers
103 views

Comparing with boolean variable in C

Consider the code: int foo(void) { _Bool b = 1; // is true int i = 42; // mean true in conditions if (i == b) return 1; else if ((_Bool)i == b) return 2; else ...
0
votes
2answers
184 views

Does C11 allows to declare variables in any place of function?

Does C11 standard (note I don't mean C++11) allows to declare variables in any place of function? Below code is not a valid ANSI C: int main() { printf("Hello world!"); int a = 5; /* Error: all ...
11
votes
4answers
235 views

What is the type of a bitfield?

I can't find anywhere in the C standard where this is specified. For example, in struct { signed int x:1; } foo; is foo.x an lvalue of type int, or something else? It seems unnatural for it to be ...
12
votes
4answers
595 views

What is gets() equivalent in C11?

From cplusplus.com The most recent revision of the C standard (2011) has definitively removed this function from its specification The function is deprecated in C++ (as of 2011 standard, ...
9
votes
1answer
329 views

C11/C++11 Memory Model

I have two questions: I would like to know if the standards for C++11 and C11 will share the same memory model specs. I read that this is so, that in fact C11 is "inheriting" the C++11 memory model ...
13
votes
1answer
354 views

Lifetime of temporary objects in C11 vs C99

I am trying to decipher a note that led to a change between C99 and C11. The change proposed in that note ended up in C11's 6.2.4:8, namely: A non-lvalue expression with structure or union type, ...
-1
votes
3answers
215 views

Differences between certain standards of C and C++ [closed]

Where can i see all differences between C++11 and C99? I think that C++98 and C++03 based on C89 / C90. Is there any differences between them? And what about C++11 and C99? Some features from C99 ...
0
votes
1answer
179 views

Does atomic_load() with memory_order_relaxed introduce any additional overhead compared to simple reading from a variable?

I don't see any reason for additional overhead for "native" CPU integrals, but I may be wrong, so I'd want to hear the comunity's opinion My real problem concerns some kind of linked list that ...
6
votes
1answer
176 views

About the array subscripting operator

Quoting from the C11 standard : Array subsripting (§ 6.5.2.1) The definition of the subscript operator [] is that E1[E2] is identical to (*((E1)+(E2))). I would like to know why are the ...
0
votes
1answer
189 views

How do I check by using __STDC_VERSION__ if is -std=c1x in use?

I know that for C11, I can test #if(__STDC_VERSION >= 20112L). But for -std=c1x what macro and/or value should I test it? what's the nomenclature of this standard? or maybe a informal name, if ...
17
votes
3answers
631 views

Is type-punning through a union unspecified in C99, and has it become specified in C11?

A number of answers for the Stack Overflow question Getting the IEEE Single-precision bits for a float suggest using a union structure for type punning (e.g.: turning the bits of a float into a ...
3
votes
1answer
403 views

P99 and C99 vs C11

Maybe I am misunderstanding the use of the P99 library but what advantages does it provide over C11 (mainly concerned about multithreading) if anything more than being an emulator. Speed? Efficiency? ...

1 2