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).
0
votes
2answers
64 views
Freeing global variable
Suppose I have a global variable that contains a large structure:
typedef struct {
char Big[1024]
} LARGE;
static LARGE x;
void main()
{
free(x);
}
Can I safely call free(x) from main ...
0
votes
3answers
121 views
Default types of constants
When I write:
if ((1/3) > 0) ...
Will I need to cast one of the operands to (float) to make this condition true? Or what is the default variable-type C is using?
And if I would write:
if ...
0
votes
1answer
69 views
Intermediate rounding
If I have a condition like;
int a = 1;
int b = 3;
if ((a/b) > 0) ...
Is the intermediate result (a/b) threated like a float (0.33) or as an int (0 because of rounding)? I'm coming from the VB6 ...
1
vote
3answers
144 views
C - Check available ram?
I know how to use malloc() and free() to allocate memory, but is there also a standard C function to check how much memory is left, so I can call that periodically to make sure my code has no memory ...
1
vote
3answers
220 views
Compatible definitions of inline functions for C99 and C++
I have a utility library of C99 code used by C++11 application code. A few inline functions are declared in the C99 style with code explicitly generated in the translation unit like:
// buffer.h
...
0
votes
1answer
61 views
reverse the arguments to a variadic macro
How do I reverse the arguments to a variadic macro? For example, I'd like
#define REVERSE(...) ???
REVERSE(A,B,C) // expands to C,B,A
My goal is to separate the front and back arguments:
#define ...
5
votes
3answers
169 views
Getting stuck in usleep(1.)
My program gets stuck in the simple call usleep(1.);. How can that be? What should I look out for?
Edit:
To make things even more confusing, it only gets stuck if I call rand() before:
rand();
...
1
vote
1answer
154 views
MISRA C 2004 and c99
Rule 1.1 of the MISRA C 2004 specifies that the spec covers c90 and not c99.
I would like to use the stdint and stdbool libraries instead of coding my own. Has anyone made this exception in their ...
0
votes
5answers
187 views
Set array size at runtime
I know how to create a structure array inside a function:
typedef struct item
{
int test;
};
void func (void)
{
int arraysize = 5;
item ar[arraysize];
}
But how do I to the same ...
0
votes
1answer
121 views
(Di|Tri)graphs in C++11
After reading up on digraphs and trigraphs I went on and tested a simple program:
#include <stdio.h>
int main()
{
int a = 0;
//??/
++a;
printf("%d",a);
return 0;
}
and by ...
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
375 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);
...
3
votes
2answers
126 views
Are there any existing C implementations having padding bit in (un)signed integer representation?
As per C99, there maybe padding bits in signed int or unsigned int representation . So I wonder are there still any implementations having such outdated things?
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 ...
0
votes
1answer
64 views
Is it possible to create an “anonymous” initializer in C99?
I'm using nested structs to create a sort of "struct inheritance" in plain C. For example, I have a few structs like this:
struct a {
obj_type type_id;
int x;
int y;
}
struct b {
...
3
votes
1answer
96 views
Clarification on integer constant expressions
Somewhere I've read that integer constant expressions consists integer constants such as:
(5 + 5) //integer constant expression
That was the only example I have seen.
Now, from standard which ...
2
votes
5answers
84 views
What does this wording of pointer type means in C99?
In C99 6.2.5 P27
All pointers to structure types shall have the same representation and alignment requirements
as each other. All pointers to union types shall have the same representation and
...
1
vote
3answers
84 views
Assignment operator and side effects with sequence points
I'm looking for some clarification for the emphasised line.
(C99 6.5.16/3) An assignment operator stores a value in the object
designated by the left operand. An assignment expression has the ...
0
votes
7answers
146 views
Is there a C99 data type guaranteed to be at least two bytes?
To determine the endianness of a system, I plan to store a multi-byte integer value in a variable and access the first byte via an unsigned char wrapped in a union; for example:
union{
unsigned ...
1
vote
2answers
380 views
implicit declaration of function ‘str[n]casecmp’ [-Werror=implicit-function-declaration]
I am compiling a C library, using C99. I am including string.h to my translation unit (and I can navigate to the definitions of the str?casecmp functions in my netbeans IDE.
The source looks ...
-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 ...
0
votes
2answers
114 views
How to expand variadic arguments in a macro?
I want to essentially have a macro shortener.
The macro, FOO(A,B,C) should expand to
defined(_FOO_A) || defined(_FOO_B) || defined(_FOO_C).
Is that possible in GCC using variadic macro arguments and ...
2
votes
1answer
110 views
Is gcc doing implicit function declarations incorrectly in c99 mode?
Consider the following code:
int main (void) {
int i = xyzzy();
return i;
}
int xyzzy (void) {
return 42;
}
Now, although the prototype for xyyzy is unkown at the point of use, this ...
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) ...
4
votes
2answers
158 views
How is size of variable length array computed at runtime in C99?
In C89, length array is known at compile time. But in C99, with variable length array, the length of array is computed at runtime.
So how does it get computed?
And why can't the length of ...
3
votes
3answers
71 views
C99 variables declaration position where it is written
I know C99 allows declarations to be mixed with code and not only at the beginning, but I'm trying to find where in ISO/IEC 9899:1999 it is written - could you point me to the section(s) I should ...
1
vote
2answers
63 views
How does compound literals work in this code?
I have the following code in which I wrote two functions. Both are meant to produce the same output. But the function g() which has loop produces a different output from what I had expected as shown ...
5
votes
5answers
120 views
Comma and assignment operators in C
I have the following:
int a = 1, b = 2, c = 3, d = 4;
a = b, c = d;
printf("%d, %d, %d, %d", a, b, c, d);
The output is:
2, 2, 4, 4
How does the comma operator work with assignment operators? ...
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
4answers
102 views
How is memory allocated for an implicitly defined multidimensional array in C99?
I'm trying to write a C99 program and I have an array of strings implicitly defined as such:
char *stuff[] = {"hello","pie","deadbeef"};
Since the array dimensions are not defined, how much memory ...
6
votes
3answers
136 views
Dereferencing in C
I've just started to learn C so please be kind.
From what I've read so far regarding pointers:
int * test1; //this is a pointer which is basically an address to the process
//memory and ...
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?
6
votes
3answers
130 views
Undefined behavior: when attempting to access the result of function call
The following compiles and prints "string" as an output.
#include <stdio.h>
struct S { int x; char c[7]; };
struct S bar() {
struct S s = {42, "string"};
return s;
}
int main()
{
...
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 ...
2
votes
1answer
53 views
Strict aliasing rules for allocated objects
C99 6.5/6 The effective type of an object for an access to its stored
value is the declared type of the object, if any. 75)
If a value is stored into an object having no declared type ...
2
votes
1answer
87 views
Converting a pointer to different type in C
int i = 42;
int *p1 = &i;
int long *p2 = (long*)p1;
Is this undefined behavior? In C++, I think it is implementation defined behavior for some reason.
I looked in C Standard:
C99 6.3.2.3/7 ...
0
votes
1answer
51 views
(How) Can I determine the version of the c99 compiler on my machine?
Is there a command line flag, or something similar, that I can use to get c99 to print it's version?
I'm looking for output similar to gcc's -v flag, which gives me:
Using built-in specs.
Target: ...
1
vote
2answers
59 views
Comparing two null pointers
C99 6.3.2.3/3 An integer constant expression with the value 0, or such
an expression cast to type void *, is called a null pointer
constant.55) If a null pointer constant is converted to a ...
0
votes
2answers
67 views
Result of unary & operator applied to a function
C99 6.3.2.1/4
A function designator is an expression that has function type. Except
when it is the operand of the sizeof operator or the unary &
operator, a function designator with type ...
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
...
1
vote
1answer
96 views
How to implement analogue of exit() functions? -std=c99
I'm writing a university project. Writing in standard C99. One of the requirements is the lack of exit(); function. Is it possible to implement a similar function?
I tried to make a function that ...
3
votes
1answer
186 views
Integer conversion rank of signed and unsigned int
For example, If I have,
int a = 42;
unsigned b = 10;
int c = a + b;
For this statement, int c = a + b; Would a be first converted to an unsigned int or would it be b that will be converted to a ...
1
vote
1answer
73 views
Unsigned to signed conversion in C
Is the following guaranteed to work or implementation defined?
unsigned int a = 4294967294;
signed int b = a;
The value of b is -2 on gcc.
From C99
(§6.3.1.3/3) Otherwise, the new type is ...
0
votes
2answers
44 views
Can the const be applied to types?
I've known that const qualifier only affects an object but not it's type:
For example:
// Only the elements of an array are constant not the array itself
const int a[5];
Suppose if I had:
float ...
3
votes
1answer
110 views
C99 complex double - int or float imaginary zero affecting the real value
Can someone explain why the following code produces different output for the test4 variable compared to the other 3? I have checked this with gcc version 4.2.1 and 4.5.3 (and others in between).
...
1
vote
3answers
194 views
Converting an int to char using printf
I'm just wondering if following is the right way to convert int to display it as a char
#include <stdio.h>
int main()
{
int x = 500;
printf("%hhd\n", x);
}
Also, from above I wonder if ...
5
votes
2answers
1k views
Printf long long int in C with GCC?
How do I printf long long int and also unsigned long long int in C99 using GCC?
I have searched the other posts which suggest to use %lld but it gives these warnings:
warning#1: unknown ...
1
vote
2answers
101 views
Getting a fractional number with scanf
In the following if I write scanf with %d /%d" (with a space) then I can input a fraction seperated by spaces.
For example: The input can be 5/7 or 5 /7 or 5 / 7 (with spaces anywhere).
How does ...
2
votes
2answers
50 views
Does this invoke undefined behavior with linkage in C?
From section (6.2.2/7) C99 Standard
7. If, within a translation unit, the same identifier appears with
both internal and external linkage, the behavior is undefined.
While the following ...
