Tagged Questions
10
votes
1answer
538 views
Double pointer const-correctness warnings in C
You can obviously cast a pointer to non-const data to a a pointer of the same type to const data:
int *x = NULL;
int const *y = x;
Adding additional const qualifiers to match the additional ...
9
votes
3answers
269 views
Does an observable difference exist using `unsigned long` and `unsigned int` in C (or C++) when both are 32 bits wide?
I'm using an MPC56XX (embedded systems) with a compiler for which an int and a long are both 32 bits wide.
In a required software package we had the following definitions for 32-bit wide types:
...
3
votes
5answers
344 views
Implicit conversion in C?
What's going on here:
printf("result = %d\n", 1);
printf("result = %f\n", 1);
outputs:
result = 1
result = 0.000000
If I ensure the type of these variables before trying to print them, it works ...
2
votes
3answers
118 views
Whether Compiler generates a Implicitly converted code before creating an object code?
I installed frama-c in my system.
What it does it, it converts all my code into more expanded form with all the implicit conversions of C..
(E.g)
//My Actual Code
if(opTab ==NULL || symTab ==NULL ...