Tagged Questions
1
vote
5answers
99 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 ...
1
vote
0answers
71 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* ...
3
votes
4answers
108 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 = ...
0
votes
1answer
36 views
c99 problems with pointers and localtime_r
I am assigning one variable to hold the current time:
struct tm *cur = malloc (sizeof (cur));
time_t t = time (NULL);
localtime_r (&t, cur);
I then print the year. It is correct. Next I enter a ...
0
votes
1answer
114 views
how to make a structure point to itself without valgrind complaining
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<assert.h>
struct Person{
char *name;
char sex;
int age;
struct Person *ancestor;
...
4
votes
2answers
83 views
Pointer in structure memory allocation in initialization (c99)
Lets assume that we've got a type:
typedef struct __BUFF_T__
{
u_int8_t *buf;
u_int32_t size;
}buff_t;
Is it correct allocating memory next way in c99?
buff_t a = {.size = 20,.buf = ...
0
votes
4answers
75 views
Pointer or Value
When I call:
write_byte((uint8_t*)0);
It passes a null-pointer. How can I modify it to pass a pointer to the literal value 0?
4
votes
5answers
115 views
Pointer from integer without a cast
When I call a function that expects a pointer, and I pass in a value, I get this warning, and I like that.
But when the value happens to be a literal '0', I don't get the warning. I think this is ...
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 ...
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 ...
5
votes
1answer
246 views
C99: Is it possible to portably determine if two pointers point within the same aggregate?
In c99, my understanding is that comparing two pointers which do not point within the same aggregate results in undefined behavior. Given an aggregate A, a pointer p_good which is known to point ...
1
vote
5answers
99 views
How can pointer addresses have different lengths?
I just executed this code example:
int *i = (int*) malloc( sizeof(int) );
printf( "%p, %p\n", &i , i );
and this is what I got:
0x7fff38fed6a8, 0x10f7010
So I wonder why is the second ...
0
votes
0answers
42 views
gcc strange error
Maybe I don't know something, but even after looking on my code for several times I still think that my code is correct, and should be able to work:
static char* test_InsertElem(tree* head,const ...
0
votes
7answers
849 views
compare two equal array in c but output shows unequal
After a long break,I am back to C but getting confused even on some simple issues.
So one is here.
Here is the simple code :
#include<stdio.h>
int main() {
char str1[]="hello";
...
0
votes
5answers
133 views
assigning a compound literal to an array pointer gives both the expected result and rubbish at the same place and time?
#include <stdio.h>
int main(void) {
int a[5], *p, i;
p = a;
p = (int []){1, 2, 3, 4, 5};
for (i = 0; i < 5; i++, p++) {
printf("%d == %d\n", *p, a[i]);
}
...
2
votes
4answers
129 views
C99 command-line does not print anything in this C programming case
I'm experiencing a weird problem with C today. Have a quick look at this simplified code snippet:
typedef struct
{
/* The number of index terms */
int nTerms;
/* Information about each ...
1
vote
4answers
406 views
C How can I avoid dereferencing the same variable multiple times?
I have an array of structs, and I have some functions that will be using several of the members of those structs. I would like to avoid the dereference in every line. I would think that there would be ...
2
votes
1answer
99 views
C99: Will arrays or heap-allocated buffers ever end at UINTPTR_MAX?
Can I assume the following invariant?
void foo(char *buf, size_t len) {
// "buf" points to either an array or memory allocated with malloc().
assert((uintptr_t)(buf + len) < UINTPTR_MAX);
}
...
-3
votes
2answers
72 views
Copying a pointer for bit operations
I have a function that passes in a struct that and instead of doing bit manipulations on the arr itself I want to create copy. How can I make a copy of an element of an array of unsigned ints to do ...
0
votes
1answer
79 views
Accessing struct array of unsigned ints
I have a struct that has space for unsigned ints:
typedef struct {
unsigned int *arr;
} Contents;
When I allocate memory:
Contents *Allocator()
{
Contents *cnt = malloc(sizeof(Contents));
...
0
votes
3answers
686 views
Assigning and accessing pointer to string within struct
I'm trying to store a string in an array contained within a struct, and access it, but I'm having a hard time. The struct looks like this:
typedef struct {
void **storage;
int numStorage;
} ...
0
votes
3answers
814 views
Accessing void * struct
I'm trying to find the bug in my implementation here, where I store a struct in another struct and cannot seem to access the value stored. I define two structs.
typedef struct {
void * data;
} ...
0
votes
4answers
864 views
Accessing arrays in a pointer to a struct
I have a simple struct:
typedef struct {
void *things;
int sizeOfThings;
} Demo;
things is intended to contain an array of individual "thing", like maybe strings or ints.
I create a pointer ...
0
votes
2answers
112 views
Handling pointers within multiple functions in C
I'm trying to create functions out of existing code in order to make it cleaner, and I'm having some problems:
It used to be:
int foo(char * s, char * t, char ** out) {
int val = strcmp(s, t);
...
1
vote
7answers
506 views
Copying and freeing malloc'ed pointer
I'm trying to hunt down memory leaks and have found one source. I am malloc'in the pointer in one function and freeing it in another, but I'm missing out on understanding how to copy the value the ...
1
vote
3answers
95 views
Returning and manipulating returned values in C
I'm having a hard time understanding the ways C handles returned values. Say for example we have:
int one = 0;
one = foo(); // Why isn't one being assigned 10?
// Clearly there is a difference ...
3
votes
1answer
180 views
Restricted pointer assignments
I have a question regarding restricted pointer assignments. See the comments in code for specific questions. Overall, I'm just wondering what's legal with restrict (I've read the standard, but still ...
4
votes
2answers
816 views
Restricted pointer questions
I'm a little confused about the rules regarding restricted pointers. Maybe someone out there can help me out.
Is it legal to define nested restricted pointers as follows:
int* restrict a;
int* ...
4
votes
3answers
1k views
Smart Pointer Implementation in C [duplicate]
Possible Duplicate:
Smart pointers/safe memory management for C?
I have an embedded application where I am allocating an object in dynamic memory and passing it around to other modules.
...
1
vote
3answers
298 views
Pointer mismatch for actual parameter?
I have a function which creates an array of pointers. The function which allocates the memory returns the new memory pointer through a parameter passed to the function. The simplest code which can ...
7
votes
3answers
697 views
Does C99 guarantee that arrays are contiguous?
Following an hot comment thread in another question, I came to debate of what is and what is not defined in C99 standard about C arrays.
Basically when I define a 2D array like int a[5][5], does the ...
14
votes
4answers
2k views
Literal string initializer for a character array
In the following rules for the case when array decays to pointer:
An lvalue [see question 2.5] of type array-of-T which appears in an expression decays (with three exceptions) into a pointer to ...
6
votes
3answers
666 views
What are the semantics of C99's “restrict” with regards to pointers to pointers?
I am doing lots of matrix arithmetic and would like to take advantage of C99's restrict pointer qualifier.
I'd like to setup my matrices as pointers to pointers to allow for easy subscripting, like ...
16
votes
8answers
8k views
What's the proper use of printf to display pointers padded with 0s
In C, I'd like to use printf to display pointers, and so that they line up properly, I'd like to pad them with 0s.
My guess was that the proper way to do this was:
printf("%016p", ptr);
This works, ...
7
votes
2answers
1k views
Volatile semantics in C99
I have an issue with some low level code I am writing, I need to use objects as volatile, but it is not necessarily so that I want the types to be declared as volatile (for reusability reasons). I can ...
8
votes
3answers
1k views
When to use restrict and when not to
I have a general understanding of restrict but I'm hoping to clarify some fine points. I have a function that reads a null-terminated string from one buffer and writes out a URL encoded version in ...
12
votes
5answers
4k views
Smart pointers/safe memory management for C?
I, and I think many others, have had great success using smart pointers to wrap up unsafe memory operations in C++, using things like RAII, et cetera. However, wrapping memory management is easier to ...
