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).
3
votes
2answers
64 views
Why the mentioned code is undefined behaviour in C
The statement a[i]=i++; is undefined as there is a confusion that which value of i(old or new) to use to evaluate the left side to get the L-value. This compiler gives a warning (operation .. may be ...
3
votes
3answers
70 views
Are C preprocessor statements a part of the C language?
I recall a claim made by one of my professors in an introductory C course. He stated that the #define preprocessor command enables a programmer to create a constant for use in later code, and that the ...
0
votes
1answer
19 views
error C2057: expected constant expression
Doing some AudioDSP in VC++ 2012 and am having problems with allocating memory for the buffer
int size = input.getSize();
float buf[size];
At compile I get the error "error C2057: expected constant ...
1
vote
1answer
53 views
Pointer to statically defined two-dimensional array
Code (compiled using gcc -std=c99) ...
#include <stdio.h>
#include <stdlib.h>
typedef int mytype[8][8];
int main(void)
{
mytype CB;
for (int r=0; r<8; r++) {
for (int ...
2
votes
3answers
43 views
Does the C99 standard guaranteed the binary representation of unsigned int?
C99 (ISO/IEC 9899:1999)
6.2.6.2/1 Integer types
The values of any padding bits are unspecified.45) A valid
(non-trap) object representation of a signed integer type where the
sign bit is ...
1
vote
1answer
63 views
Is a new object created each time a compound literal is assigned to a pointer in a loop?
According to C99 standard 6.5.2.5 .9 the code:
int *p = (int []){2, 4};
initializes p to point to the first element of an array of two ints,
the first having the value two and the second, four. ...
0
votes
2answers
42 views
C99 - vscanf for dummies? [closed]
I am sorry to bother S.O. with such a general request for information.
I can find plenty of very terminology-heavy definitions of vscanf - but I can't find much in the way of concrete examples which ...
0
votes
2answers
15 views
Accessing inactive union members
If I have the following code:
#include <stdint.h>
union data_t {
int8_t sbyte;
uint8_t ubyte;
int16_t sint;
uint16_t uint;
int32_t slong;
uint32_t ulong;
int64_t sint64;
...
4
votes
3answers
59 views
Value of elements of a character array initialized as an empty string
Suppose the following initialization:
char mystr[4] = "";
Does the C99 standard guarantee that a character array initialized to an empty string will initialize all elements in the character array ...
0
votes
0answers
42 views
How does the following C program work, why is the result different when compiled with various C standards? [duplicate]
#include<stdio.h>
int main()
{
int a[]={10,20,30,40};
int i=3,x=0;
x=1*a[--i]+2*a[--i]+3*a[--i];
printf("%d\n",x);
}
GCC compiler output= 90 but C99 says 130 and i'm getting 100
x ...
5
votes
2answers
97 views
Is C99 support really still not widespread?
I was reading through some of the best practices for the GNOME project, and one thing that they kept stressing was avoiding C99 features, as support was still not widespread. Some of the things they ...
1
vote
1answer
49 views
Performance of external versus static function call
Is there typically a difference in performance between calling an extern function versus calling a static function? If so, what causes this difference -- aren't both calls mapped the same way (i.e. to ...
0
votes
2answers
114 views
Designated Initializers in C99: How to handle empty uninitialized struct members in C11?
Since in C I can call the members of a struct by name (myStruct.myMember = ) I was wondering what I would do in C++ with those members that are not initialized.
So as I understood, C++ does not ...
-2
votes
1answer
44 views
Compiling C code with g++: Invalid conversion
I'm compiling c code with g++ and running in some problems.
after fixing designated initializers I'm left with this error:
error: invalid conversion from 'void*' to '__u8*'
This is my code:
static ...
2
votes
4answers
71 views
Do we have c99 subflags
Are there sub-options provided for -std=c99, so that i can pass those sub-options and get away from passing -std=c99?
For example:
int main()
{
for(int i=0;i<10;i++)
{
i++;
}
...
4
votes
1answer
46 views
stdlib.h doesn't have declaration for putenv
I've tried compiling the following code with gcc 4.7.3 and clang 3.2.1 on Ubuntu 13.04 (64-bit):
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
int main() {
...
0
votes
4answers
90 views
Printf width specificer to print floating-point with maximum precision
Is there a printf width specifier which can be applied to a floating point specifier that would automatically format the output to display the floating point value at the maximum precision possible?
...
2
votes
2answers
41 views
C99 Designated Initializer duplicate index not flagged at all in build output or lint
I played around with designated initializers a bit the other day and noticed, to my surprise, that it is valid to use the same index more than once. What's more, it didn't even produce a compiler ...
1
vote
2answers
90 views
Convert unsigned long long to double in C
I realize this question could be processor dependent, but hopefully someone can point me in the right direction. For the life of me, I cannot figure out how to convert an unsigned long long int ...
2
votes
3answers
65 views
ftell at a position past 2GB
On a 32-bit system, what does ftell return if the current position indicator of a file opened in binary mode is past the 2GB point? In the C99 standard, is this undefined behavior since ftell must ...
0
votes
2answers
83 views
If C99 lifted “variable declaration at top of block” constraint, why doing so in a “for loop” showing error?
I read from a site that C99 lifted the restriction that variables in C must be declared at the top of a block. I tested in my program below and it is indeed true as I get no errors. But in th e same ...
0
votes
1answer
30 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
58 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 ...
4
votes
1answer
75 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 ...
2
votes
3answers
64 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 ...
1
vote
2answers
98 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, ...
0
votes
1answer
64 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] ...
1
vote
2answers
82 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
62 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 ...
1
vote
0answers
45 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
21 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"";
...
2
votes
2answers
80 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 ...
3
votes
0answers
93 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
66 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 ...
0
votes
2answers
81 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 ...
17
votes
2answers
280 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?
1
vote
5answers
122 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 ...
2
votes
2answers
99 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
45 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
137 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;
...
1
vote
0answers
94 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
2answers
111 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 ...
0
votes
1answer
61 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
70 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* ...
1
vote
1answer
47 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 ...
1
vote
4answers
103 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 ...
2
votes
1answer
167 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
64 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
66 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
121 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 ...




