This tag is for questions regarding the International Standard ISO 9899:1999, aka "C99", with technical corrigenda, and for questions about code written in C99 (as opposed to K&R C, C89 or later C Standard revisions like the 2011 revision C11).

learn more… | top users | synonyms

0
votes
0answers
20 views

Scan for wireless stations

I'm developing a basic program for multicasting frames on a wireless network to determined stations, based on some rules. I use lorcon to handle the injection part, but I also need to look for which ...
1
vote
3answers
43 views

migrate code using C99 dynamically allocated multidimensional arrays into C++

I'm in the process of trying to learn how to do things in C++, and one of the aspects with which I'm grappling is how to efficiently implement dynamically allocated multidimensional arrays. For ...
1
vote
5answers
102 views

Is there a difference between const char * const and char []?

Consider the two following lines of code: const char *ptr = "Hello"; char arr[] = "Hello"; For the pointer definition, the "Hello" string literal is essentially immutable, but the ptr variable ...
0
votes
4answers
120 views

Optimizing 'for-loops' over arrays in C99 with different indexing

I want to speed up an array multiplication in C99. This is the original for loops: for(int i=0;i<n;i++) { for(int j=0;j<m;j++) { total[j]+= w[j][i] * x[i]; } } ...
0
votes
3answers
5k views

C, reading multiple numbers from single input line (scanf?)

I have written an app in C which expects two lines at input. First input tells how big an array of int will be and the second input contains values separated by space. For example, the following ...
4
votes
1answer
67 views

Automatic variable has static lifespan if not initialized?

I have the concept of static local variables down pretty well: global lifespan, local scope. Similarly, I understand automatic variables are allocated/deallocated automatically when program flow ...
0
votes
1answer
51 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] ...
2
votes
3answers
57 views

Looping construct in a C99 macro

I want to generate an array initializer with arbitrary logic that unfortunately requires some looping. #define RANDOM_ARRAY(n) \ ... double array[] = RANDOM_ARRAY(10); Suppose the code above ...
0
votes
2answers
91 views

Why this C program complies and runs

With curiosity of the definition and scope of typedef I have written below C code in 2 .c files: main.c #include <stdio.h> int main() { int a = 5, b = 6; printf("a = %d, b = %d\n", a, ...
13
votes
2answers
2k views

Linux: gcc with -std=c99 complains about not knowing struct timespec

When I try to compile this on Linux with -std=c99 gcc complains about not knowing struct timespec. However if I compile this w/o -std=c99 everything works fine. #include <time.h> void ...
1
vote
3answers
625 views

GCC: Allow overloaded functions in C99

I write code in C99 and compile via GCC. I would like to use function overloading for stylistic reasons (otherwise I would have to do name mangling by myself). I have read Is there a reason that C99 ...
0
votes
2answers
93 views

Do C99 signed integer types defined in stdint.h exhibit well-defined behaviour in case of an overflow?

All operations on "standard" signed integer types in C (short, int, long, etc) exhibit undefined behaviour if they yield a result outside of the [TYPE_MIN, TYPE_MAX] interval (where TYPE_MIN, TYPE_MAX ...
1
vote
2answers
77 views

Is it possible to create custom-width integers in C?

The C standard and C compilers come with fixed width integer types, such as uint8_t, int16_t, etc. Is there a way of defining a 128-bit integer in C that would be useable in code using the same ...
0
votes
3answers
53 views

How to set 1d array to 2d array element in C

I need something like this: char font[128][8] = {{0}}; font[0][] = {0, 0b00000000, 0b11111100, 0b00010010, 0b00010010, 0b11111100, 0b00000000, 0}; font[1][] = {...} But in c99 I get "expected ...
2
votes
2answers
67 views

What is the purpose of “Macros for minimum-width integer constants”

In C99 standard Section 7.18.4.1 "Macros for minimum-width integer constants", some macros defined as [U]INT[N]_C(x) for casting constant integers to least data types where N = 8, 16, 32, 64. Why are ...
1
vote
0answers
44 views

Scan hexadecimal floating points in Windows with Linux code

I am trying to compile Wapiti 1.3.0 (a NLP tagging tool) in a Windows 8 based machine. The C source code is intended for Linux (and similar) systems. I have managed to compile it using Cygwin gcc. ...
0
votes
0answers
19 views

Stack around the variable 'buf' was corrupted!! Variable length args

Any one do have any idea why this code fails? ErrMsg(123, L"Err Msg Test") . VOID __cdecl ErrMsg (HRESULT hr, LPCTSTR lpFmt, ...) { LPTSTR lpSysMsg = L""; TCHAR buf[400] = L""; ...
3
votes
0answers
91 views

Banker's rounding with Visual C++? [duplicate]

What's the easiest way to get "Banker's rounding" of floats with Visual C++ ? On other platforms/compilers I just use rint, for which the default rounding mode is correct, but of course Visual Studio ...
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 ...
2
votes
3answers
1k views

double_t in C99

I just read that C99 has double_t which should be at least as wide as double. Does this imply that it gives more precision digits after the decimal place? More than the usual 15 digits for double?. ...
0
votes
2answers
61 views

Why is the fgets function deprecated?

From The GNU C Programming Tutorial: The fgets ("file get string") function is similar to the gets function. This function is deprecated -- that means it is obsolete and it is strongly ...
15
votes
2answers
273 views

Will “&a+1 > &a” cause an undefined behaviour

Does c99/c++03 guarantee that &a+1 > &a is always true? for example, there's a (c-like) std::copy, and int a = 0 ; int b[9] ; std__copy(&a , &a+1 , b) ; Does this always work?
2
votes
2answers
53 views

Using 'typedef' to ensure logical type safety

typedef int A; typedef int B; void foo(A arg){} void main(void){ B wrongvar = 7; foo(wrongvar); } Is this construction supposed to return a warning/error, according to the standard? What ...
2
votes
2answers
95 views

C99 inline function in .c file

I defined my function in .c (without header declaration) as here: inline int func(int i) { return i+1; } Then in the same file below I use it: ... i = func(i); And during the linking I got ...
0
votes
1answer
42 views

What is wrong with extern short i; i=2; ? gcc complains type conflict

The following code is similar to that of question Is there a difference between initializing a variable and assigning it a value immediately after declaration? downvoted twice, so I am at risk ;-) ...
0
votes
4answers
110 views

Is there a difference between initializing a variable and assigning it a value immediately after declaration?

Assuming a purely non-optimizing compiler, is there any difference in machine code between initializing a variable and assigning it a value after declaration? Initialization method: int x = 2; ...
0
votes
2answers
79 views

Purpose of the ATOMIC_INIT macro in the Linux kernel

I'm reading the Linux Device Drivers 3rd Edition book online and I'm having trouble understanding the initialization macro for atomic variables: static atomic_t foobar = ATOMIC_INIT(1); I've looked ...
1
vote
0answers
73 views

How to initialize void* data struct member with another struct member in C99?

let's assume that we have below struct definitions: typedef struct { uint8_t a ; } deepest_t ; typedef struct { deepest_t* deepest_ptr ; } deeper_t ; typedef struct { deeper_t* ...
0
votes
1answer
55 views

User input to make a linked list

Any help would be great. I have a project for a c 99 programming class that requires us to ask a user for a sentence and then take that sentence char-by-char and store each char individually in a ...
1
vote
3answers
58 views

Initialization of the structure containing pointer to another structure in C99

I've some structures definitions below : typedef struct { uint16_t a ; } my_type1_t ; typedef struct { uint16_t b ; } my_type2_t ; typedef struct { my_type1_t* a_ptr ; my_type2_t* ...
19
votes
6answers
7k views

Standard alternative to GCC's ##__VA_ARGS__ trick?

There is a well-known problem with empty args for variadic macros in C99. example: #define FOO(...) printf(__VA_ARGS__) #define BAR(fmt, ...) printf(fmt, __VA_ARGS__) FOO("this works fine"); ...
1
vote
1answer
44 views

Scope of enum itself in Objective-C?

Consider the following code: enum TableSections { kSection1 = 0, kSection2 = 1, }; What is the scope of the identifier TableSections? If this code is in an implementation file, is ...
2
votes
1answer
167 views

Issue with periodically discrepancies in cufft-fftw complex to real transformations

For my thesis, I have to optimize a special MPI-Navier Stokes-Solver program with CUDA. The original program uses FFTW for solving several PDEs. In detail, several upper triangle matrices are fourier ...
1
vote
5answers
96 views

Does casting the ioctl argument break the strict aliasing rule?

I'm running a Linux 3.2 kernel with the following ioctl prototype: long ioctl(struct file *f, unsigned int cmd, unsigned long arg); I noticed that arg is always unsigned long regardless of the ...
3
votes
4answers
111 views

Does this pointer casting break strict aliasing rule?

This is the fast inverse square root implementation from Quake III Arena: float Q_rsqrt( float number ) { long i; float x2, y; const float threehalfs = 1.5F; x2 = ...
14
votes
4answers
11k views

bool to int conversion

How portable is this conversion. Can I be sure that both assertions pass? int x = 4<5; assert(x==1); x = 4>5; assert(x==0); Don't ask why. I know that it is ugly. Thank you.
2
votes
1answer
126 views

How to compile a Linux kernel module using -std=gnu99?

I've recently learned how to program simple character drivers and while playing around with the code I noticed that I get a lot of the following GCC warnings thrown for my C99 code: warning: ISO C90 ...
2
votes
1answer
55 views

EXPORT_SYMBOL in header causes “exported twice” errors

I have a header file with the declaration of several global variables in the following format: constants.h #ifndef CONSTANTS_H #define CONSTANTS_H extern unsigned var; EXPORT_SYMBOL(var); #endif ...
1
vote
3answers
62 views

Which of these is the more portable way to set the maximum value of an unsigned integer?

In C99 compliant C, assuming no preprocessor macro defines, which is the more portable way of setting the maximum value of an unsigned integer: unsigned x = -1; or unsigned y = ~0; I recall a ...
0
votes
4answers
82 views

C99 mode in C project

I get this message when I compile my code. error: 'for' loop initial declarations are only allowed in C99 mode note: use option -std=c99 or -std=gnu99 to compile your code What does mean? How ...
3
votes
2answers
96 views

C preprocessor using the closing bracket of a parent macro

I have this code which works: #include <stdio.h> #define A(x) x B #define B(x) C(x, #define C(x,y) y x) int main( void ) { printf( A("1") ("2") "3" ); } It prints 132 (the point of the A ...
0
votes
0answers
48 views

what is the knowlegable approach to learning C++ [closed]

I've been teaching myself c++ for about a month and I'm about to do some real heavy reading on c++ to really start learning it. I have an interest in Perl and Java as well, but from reading books java ...
11
votes
2answers
114 views

int promotion: Is the following well-defined?

Suppose that on a C implementation (e.g. on a x86 C compiler) USHRT_MAX = 65535 and INT_MAX = 2147483647. Is, then, the following statement well-defined? unsigned short product = USHRT_MAX * ...
1
vote
1answer
238 views

libstdc++-6.dll issues

I would like to bring forward an issue regarding MinGW 4.7.2 I first ran into the deadly issue caused by libstdc++-6.dll when I ventured in OpenCV. Luckily, I ran across a workaround here -> ...
2
votes
3answers
98 views

Understanding “not” on booleans

My question seems simple, but I've been perplexed about it: bool myBool = TRUE; if (myBool) printf("1 myBool = true\n"); else printf("1 myBool = false\n"); myBool = !myBool; if (myBool) printf("2 ...
6
votes
1answer
102 views

How to use C99 standard types for maximum portability AND efficiency across most platforms?

First, here is what I understand and think what is true for the question. Use fast data types for single variables like counters or for loop indexes. For example: #define LOOP_COUNT (100U) ...
0
votes
0answers
11 views

How to compile a C99 source on vc++2008 but without changing the original function?

Such as: enum { SPICE_MSG_CURSOR_INIT = 101, SPICE_MSG_CURSOR_RESET, SPICE_MSG_CURSOR_SET, SPICE_MSG_CURSOR_MOVE, SPICE_MSG_CURSOR_HIDE, SPICE_MSG_CURSOR_TRAIL, ...
1
vote
3answers
72 views

fileno() not available?

I am trying to use the posix function isatty() in my C code, to tell if the output is being redirected. However, to do this I need a file descriptor, and from my research it looks like fileno() is no ...
4
votes
1answer
99 views

Type punning with void * without breaking the strict aliasing rule in C99

I recently came across the strict aliasing rule, but I'm having trouble understanding how to use void * to perform type punning without breaking the rule. I know this breaks the rule: int x = ...
2
votes
1answer
91 views

warning C4047: '=' : 'char' differs in levels of indirection from 'char *'

What is the problem with the code shown below. char filter[2] = {'\0'}; *filter = (char *)calloc((unsigned int)buf.st_size + 1, sizeof(unsigned char)); As per my understanding, there is no problem ...

1 2 3 4 5 12