0
votes
1answer
53 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
0answers
65 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 ...
3
votes
2answers
176 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
109 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
247 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? ...
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 ...
18
votes
2answers
376 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); ...
-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
196 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) ...
17
votes
1answer
167 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 ...
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 ...
13
votes
1answer
355 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, ...
17
votes
3answers
640 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
406 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? ...
2
votes
2answers
307 views

A bug in GCC implementation of bit-fields

Working in C11, the following struct: struct S { unsigned a : 4; _Bool b : 1; }; Gets layed out by GCC as an unsigned (4 bytes) of which 4 bits are used, followed by a _Bool (4 bytes) of ...
1
vote
2answers
132 views

Unfamiliar syntax for initializing an array/struct, looking for explanation

I'm looking through the "Processor Modeling Guide" provided by a company named OVP (a product similar to qemu). In it, there's a little code snippet resembling the following: static ...
15
votes
2answers
507 views

Bit-fields and sequence points

For an implementation that packs f0 and f1 into the same byte, is the program below defined? struct S0 { unsigned f0:4; signed f1:4; } l_62; int main (void) { (l_62.f0 = 0) + ...
2
votes
4answers
219 views

Why doesn't the compiler detect and produce errors when attempting to modify char * string literals?

Assume the following two pieces of code: char *c = "hello world"; c[1] = 'y'; The one above doesn't work. char c[] = "hello world"; c[1] = 'y'; This one does. With regards to the first one, I ...
11
votes
2answers
302 views

How to get involved in C standardization process?

Lately I've been getting interest in C standardization. I want to participate in development of C1X. I want to put forward my ideas (irrespective of they being accepted/rejected). I want to know the ...