4
votes
15answers
367 views
C - the most useful user-made C-macros (in GCC, also C99) ?
What C-macros is in your opinion is the most useful? I have found the following one, which I use to do vector arithmetics in C:
#define v3_op_v3(x, op, y, z) {z[0]=x[0] op y[0]; \ …
0
votes
2answers
39 views
subexpressions evaluation order
I've looked at SO/IEC 9899:201x under J.1 Unspecified behavior:
"The order in which subexpressions are evaluated and the order in which side effects
take place, except as specifie …
4
votes
6answers
174 views
C99 backward compatibility
I'm used to old-style C and and have just recently started to explore c99 features. I've just one question: Will my program compile successfully if I use c99 in my program, the c99 …
0
votes
3answers
41 views
Declaration of IEEE mathematical functions like ‘ilogbf’ in MSVC++6
Hi,
Could someone please help and tell me how to include IEEE mathematical functions in MSVC++6? I tried both and , but I still get these errors:
- error C2065: 'ilogbf' : undec …
0
votes
1answer
27 views
How to auto-sync Header in Visual Studio ?
Do you know if there is a build-in feature or free add-in for Microsoft Visual Studio 2008 that easily generates C-Headers and keeps them in sync with their .c counterparts?
I have …
5
votes
6answers
259 views
Does the C preprocessor strip comments or expand macros first?
Consider this (horrible, terrible, no good, very bad) code structure:
#define foo(x) // commented out debugging code
// Misformatted to not obscure the point
if (a)
foo(a);
bar(a …
3
votes
4answers
122 views
Exception libraries for C (not C++)
Hi -
I am rolling my own exception library for C and would like good examples to examine.
So far, I have been looking at David Hanson's:
http://drhanson.net/work/
But I know I'v …
0
votes
3answers
240 views
ASM in C gives an error with -std=c99
I'm now willing to compile my project with -std=c99 and I'm facing an error I'm not understanding for the moment. This line :
my_type* td = ({ register kmy_type* arg0 asm("eax"); …
2
votes
3answers
142 views
Tentative definitions in C99 and linking
Consider the C program composed of two files,
f1.c:
int x;
f2.c:
int x=2;
My reading of paragraph 6.9.2 of the C99 standard is that this program should be rejected. In my in …
4
votes
6answers
245 views
What can human beings make out of the restrict qualifier?
If I got the C99 restrict keyword right, qualifying a pointer with it is a promise made that the data it references won't be modified behind the compiler's back through aliasing.
…
1
vote
4answers
219 views
What’s the C++ equivalent of UINT32_MAX?
In C99, I include stdint.h and that gives me UINT32_MAX as well as uint32_t. However, in C++ the UINT32_MAX gets defined out. I can define __STDC_LIMIT_MACROS before including st …
5
votes
3answers
130 views
What are the semantics of C99’s “restrict” with regards to pointers to pointers?
I am doing lots of matrix arithmetic and would like to take advantage of C99's restrict pointer qualifier.
I'd like to setup my matrices as pointers to pointers to allow for easy …
3
votes
3answers
93 views
fileno, F_LOCK and F_ULOCK become undeclared and unavailable when I add std=c99 flag to gcc
I have these headers in a c code
#include <stdio.h>
#include <unistd.h>
Everything compiled fine until I added -std=c99 flag to gcc command (to enable restrict). And …
1
vote
7answers
259 views
What techniques/strategies do people use for building objects in C (not C++)?
I am especially interested in objects meant to be used from within C, as opposed to implementations of objects that form the core of interpreted languages such as python.
1
vote
4answers
874 views
How to portably convert a string into an uncommon integer type?
Some background: If I wanted to use for, for instance, scanf() to convert a string into a standard integer type, like uint16_t, I’d use SCNu16 from <inttypes.h>, like this:
…
