Tagged Questions
1
vote
2answers
67 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
60 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
75 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
0answers
21 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 ...
4
votes
1answer
69 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
61 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
93 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, ...
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 ...
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. ...
2
votes
2answers
69 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 ...
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 ...
0
votes
2answers
63 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?
1
vote
5answers
105 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
96 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
114 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
75 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
83 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
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
61 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
4answers
100 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
130 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
64 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
87 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
99 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 ...
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 ...
3
votes
4answers
112 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 = ...
1
vote
1answer
249 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 -> ...
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)
...
1
vote
3answers
73 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
106 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
92 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 ...
3
votes
1answer
90 views
Is it theoretically possible for an implementation to promote an unsigned int to an int?
According to the following two clauses from the C99 standard:
6.2.5-9
The range of nonnegative values of a signed integer type is a subrange
of the corresponding unsigned integer type, and ...
2
votes
2answers
74 views
What is the behavior of an unsigned int converted to an unsigned char in the C99 standard?
For example:
#include <stdio.h>
int main(void){
unsigned int x = 64;
x += 1023;
unsigned char y = x;
printf("%u\n", y);
return 0;
}
The variable y holds the value 63 on ...
11
votes
2answers
115 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 * ...
0
votes
0answers
126 views
Building R on the Raspberry Pi
I am building a software package using a custom built toolchain for the Raspberry Pi.
I've run into a C standard issue. When compiling, I get an error that says SIZE_MAX is required for C99.
See ...
4
votes
3answers
107 views
Returning a variable while using a post increment in C
I have a global variable called var and a function foo. (I know it's a bad practice but sometimes it's unavoidable) I'm wondering if the C standard (I'm compiling using c99) says what happens to var ...
0
votes
2answers
38 views
Assigning to the pointer which is a member of the struct causes segmentation fault
My goal is to modify vcprompt in such a way that it takes additional param which specifies explicitly for which VCS to show the state. Here's the gist of the changes:
typedef struct {
int debug;
...
1
vote
2answers
77 views
Why uint from <sys/types.h> disappears using -std=c99?
// Filename: test.c
#include <sys/types.h>
int main() {
uint a;
return 0;
}
The above code is able to compile using gcc and clang with standard like gnu89 or gnu99. In other words, the ...
1
vote
2answers
96 views
Can anybody please explain the behavour of C preprocessor in following examples?
I am implementing a C macro preprocessor (C99)...
I am surprised by the following behaviour....
Ex1:
#define PASTE(x) X_##x
#define EXPAND(x) PASTE(x)
#define TABSIZE 1024
#define BUFSIZE TABSIZE
...
-2
votes
2answers
54 views
C99 Segmentation Overflow strlen, not consistent
I have been searching for answers to this problem for a while, and I cannot seem to find a solution. When the arguments are of different lengths, there is no error. When they are of the same length, ...
19
votes
2answers
217 views
Catch incorrect usage of c bool
In a C project (OpenVPN is the project in question, commit 4029971240b6274b9b30e76ff74c7f689d7d9750) we had a emulation of bool
typedef int bool;
#define false 0
#define true 1
and now switch to ...
0
votes
1answer
57 views
How to handle a warning from the clang compiler?
I'd like my program to compile with clang with no warnings. The function appears to work when compiled but why? How can I handle the warning?
$ clang cpu-disk-info.c
cpu-disk-info.c:108:17: warning: ...
1
vote
3answers
134 views
NULL function pointers
What is the behavior of calling a null function pointer?
void (*pFunc)(void) = NULL;
pFunc();
Why is it advisable to initialize yet unused function pointers to NULL?
1
vote
3answers
85 views
How to determine return type, arguments, function name from C99 function declarations
I'm looking for the simpliest way, how to determine return type, arguments and function name from c header file written under C99.
it's my school project, which have to be written in Perl without any ...
2
votes
3answers
125 views
why we use FILE * instead of FILE for I/O
Today I am learning things about Standard I/O of C. When I opened the stdio.h file found that:
typedef struct _iobuf FILE;
and when check the defination of struct _iobuf found that:
struct _iobuf ...
0
votes
3answers
90 views
Efficiently calculate leap days
Im using the following function to calculate the number of leap days between two years:
static int CountLeapDays(int startYear, int endYear)
{
int Days = 0;
while (true)
{
if ...



