A pointer is a data type that "points to" another value stored in memory using its address.

learn more… | top users | synonyms (1)

45
votes
10answers
4k views

What is the difference between str==NULL and str[0]=='\0' in C?

I want to know the difference between str == NULL and str[0] == '\0': int convert_to_float(char *str, double *num) { if ((str == NULL) || (str[0] == '\0')) return(-1); *num = ...
45
votes
5answers
21k views

Are there benefits of passing by pointer over passing by reference in C++?

Are there benefits of passing by pointer over passing by reference in C++? Lately, I have seen a number of examples that pass the a pointer instead of passing by reference. Are there benefits to ...
45
votes
5answers
13k views

Is it safe to delete a NULL pointer?

Is it safe to delete a NULL pointer? And is it a good coding style?
44
votes
5answers
4k views

const char* and char const* - are they the same?

From my understanding, const modifiers should be read from right to left. From that, I get that: const char* is a pointer whose char elements can't be modified, but the pointer itself can, and ...
43
votes
11answers
2k views

What is the point of function pointers?

I have trouble seeing the utility of function pointers. I guess it may be useful in some cases (they exist, after all), but I can't think of a case where it's better or unavoidable to use a function ...
41
votes
7answers
109k views

What does this error mean: “error: expected specifier-qualifier-list before 'type_name'”?

I'm a bit new to working with c/c++, so sorry if this is a dumb question. I've been working on the Cell processor and I'm trying to create a struct that will hold an spe_context_ptr_t, which will be ...
40
votes
12answers
23k views

How can I get the size of an array from a pointer in C?

I've allocated an "array" of mystruct of size n like this: if (NULL == (p = calloc(sizeof(struct mystruct) * n,1))) { /* handle error */ } Later on, I only have access to p, and no longer have n. ...
40
votes
5answers
10k views

Should I use static_cast or reinterpret_cast when casting a void* to whatever

Both static_cast and reinterpret_cast seem to work fine for casting void* to another pointer type. Is there a good reason to favor one over the other?
39
votes
14answers
8k views

C: differences between char pointer and array

I know that similar questions are posted in SO, but I thought I can ask this in the following the context: char amessage[] = "now is the time"; char *pmessage = "now is the time"; I read from The C ...
39
votes
3answers
32k views

error: ‘NULL’ was not declared in this scope

I get this message when compiling C++ on gcc 4.3 error: ‘NULL’ was not declared in this scope It appears and disappears and I don't know why. Why? Thanks.
38
votes
11answers
2k views

C: Why do unassigned pointers point to unpredictable memory and NOT point to NULL?

A long time ago I used to program in C for school. I remember something that I really hated about C: unassigned pointers do not point to NULL. I asked many people including teachers why in the world ...
37
votes
17answers
18k views

Is there any way to determine the size of a C++ array programmatically? And if not, why?

This question was inspired by a similar question: How does delete[] “know” the size of the operand array? My question is a little different: Is there any way to determine the size of a C++ array ...
37
votes
6answers
24k views

NULL pointer with boost::shared_ptr?

What's the equivalent to the following: std::vector<Foo*> vec; vec.push_back(NULL); when dealing with boost::shared_ptr? Is it the following code? std::vector< ...
36
votes
9answers
3k views

Why [object doSomething] and not [*object doSomething]?

In Objective-C, why [object doSomething]? Wouldn't it be [*object doSomething] since you're calling a method on the object, which means you should dereference the pointer?
36
votes
13answers
8k views

What are potential dangers when using boost::shared_ptr?

What are some ways you can shoot yourself in the foot when using boost::shared_ptr? In other words, what pitfalls do I have to avoid when I use boost::shared_ptr?
36
votes
5answers
2k views

Why is the dereference operator (*) also used to declare a pointer?

I'm not sure if this is a proper programming question, but it's something that has always bothered me, and I wonder if I'm the only one. When initially learning C++, I understood the concept of ...
34
votes
5answers
16k views

What is the purpose of the frame pointer?

I'm a beginner in assembly language and have noticed that the x86 code emitted by compilers usually keeps the frame pointer around even in release/optimized mode, when it could use the EBP register ...
33
votes
5answers
30k views

What can I use instead of the arrow operator, `->`?

What is the arrow operator (->) a synonym for?
33
votes
9answers
18k views

What is the difference between NULL, '\0' and 0

In C, there appear to be differences between various values of zero -- NULL, NUL and 0. I know that the ASCII character '0' evaluates to 48 or 0x30. The NULL pointer is usually defined as: #define ...
32
votes
10answers
9k views

what does malloc(0) return?

What does malloc(0) returns? Would the answer be same for realloc(malloc(0),0) ? #include<stdio.h> #include<malloc.h> int main() { printf("%p\n", malloc(0)); ...
32
votes
8answers
7k views

Is array name a pointer in C?

Is an array's name a pointer in C? If not, what is the difference between an array's name and a pointer variable?
31
votes
8answers
2k views

Meaning of complex C syntax [duplicate]

Possible Duplicate: What does this C statement mean? What does this expression mean? char *(*c[10])(int **p);
30
votes
15answers
2k views

How many of you are aware that its safe to delete a NULL pointer? [closed]

I just realized after years of writing C++, that I can safely delete a NULL pointer. So I figure, I'm not the only one that wasn't aware of this. Now I feel silly for all my if(p) delete p; code ...
30
votes
13answers
5k views

Placement of the asterisk in Objective-C

I have just begun learning Objective-C, coming from a VB .Net and C# .Net background. I understand pointer usage, but in Objective-C examples I see the asterisk placed in several different places, ...
29
votes
10answers
19k views

What is the difference between char * const and const char *?

What's the difference between: char * const and const char *
29
votes
6answers
1k views

sizeof taking two arguments

In C.1.3 of the C++ IS (2003. It's in the C++11 IS, too), the standard points out a difference between ISO C and C++; namely, for char arr[100]; sizeof(0, arr) returns sizeof(char*) in C, but 100 ...
29
votes
4answers
6k views

How come an array's address is equal to its value in C?

In the following bit of code, pointer values and pointer addresses differ as expected. But array values and addresses don't! How can this be? Output my_array = 0022FF00 &my_array = 0022FF00 ...
29
votes
4answers
5k views

Should I explicitly cast malloc()'s return value?

I wanted to ask about the following case: char *temp; temp = malloc(10); Since the return type of malloc is void*, will the pointer returned by the malloc be implicitly cast to char* type before ...
28
votes
6answers
38k views

Dynamically allocating an array of objects

This is kind of a beginners question, but I haven't done C++ in a long time, so here goes... I have a class that contains a dynamically allocated array, say class A { int* myArray; A() { ...
28
votes
7answers
1k views

Why can't arrays be passed as function arguments?

Why can't you pass arrays as function arguments? I have been reading this C++ book that says 'you can't pass arrays as function arguments', but it never explains why. Also, when I looked it up online ...
28
votes
8answers
51k views

Create a pointer to two-dimensional array

I need a pointer to a static 2-dimensional array. How is this done? static uint8_t l_matrix[10][20]; void test(){ uint8_t **matrix_ptr = l_matrix; //wrong idea } I get all kinds of errors ...
27
votes
9answers
6k views

In C, why is the asterisk before the variable name, rather than after the type?

In my experience, everyone names variables like this: int *myVariable; Rather than like this: int* myVariable; Both are valid. It seems to me that the asterisk is a part of the type, not a part ...
27
votes
8answers
11k views

C pointers : pointing to an array of fixed size

This question goes out to the C gurus out there: In C, it is possible to declare a pointer as follows: char (* p)[10]; .. which basically states that this pointer points to an array of 10 chars. ...
27
votes
3answers
1k views

Can we return string literal in C [duplicate]

Is this code valid? const char* foo() { return "Hello World"; } That is, return "Hello World" from a C function. const char* str = foo(); Will str be a dangling pointer? PS: The above ...
27
votes
3answers
7k views

C# Store functions in a Dictionary

How do I create a Dictionary where I can store functions? Thanks. I have about 30+ functions which can be executed from the user. I want to be able to execute the function this way: private void ...
26
votes
7answers
7k views

Why can't I convert 'char**' to a 'const char* const*' in C?

The following code snippet (correctly) gives a warning in C and an error in C++ (using gcc & g++ respectively, tested with versions 3.4.5 and 4.2.1; MSVC does not seem to care): char **a; const ...
26
votes
4answers
4k views

How does dereferencing of a function pointer happen?

Why and how does dereferencing a function pointer just "do nothing"? This is what I am talking about: #include<stdio.h> void hello() { printf("hello"); } int main(void) { ...
25
votes
3answers
5k views

Why does NSError need double indirection? (pointer to a pointer)

This concept seems to trouble me. Why does an NSError object need its pointer passed to a method that is modifying the object? For instance, wouldn't just passing a reference to the error do the same ...
25
votes
21answers
26k views

Testing pointers for validity (C/C++)

Is there any way to determine (programatically, of course) if a given pointer is "valid"? Checking for NULL is easy, but what about things like 0x00001234? When trying to dereference this kind of ...
25
votes
7answers
1k views

Are there are any platforms where pointers to different types have different sizes?

The C standard allows pointers to different types to have different sizes, e.g. sizeof(char*) != sizeof(int*) is permitted. It does, however, require that if a pointer is converted to a void* and ...
25
votes
5answers
13k views

Passing pointers between C and Java through JNI

At the moment, i'm trying to create a Java-application which uses CUDA-functionality. The connection between CUDA and Java works fine, but i've got another problem and wanted to ask, if my thoughts ...
24
votes
21answers
4k views

What is the real difference between Pointers and References?

AKA - What's this obsession with pointers? Having only really used modern, object oriented languages like ActionScript, Java and C#, I don't really understand the importance of pointers and what you ...
24
votes
10answers
5k views

Accessing array values via pointer arithmetic vs. subscripting in C

I keep reading that, in C, using pointer arithmetic is generally faster than subscripting for array access. Is this true even with modern (supposedly-optimizing) compilers? If so, is this still the ...
24
votes
7answers
14k views

Pointer arithmetic for void pointer in C

If a particular type(say int,char,float,..) pointer is incremented the value of pointer variable increased by number which is equal to size of the particular data type.If a void pointer points to data ...
24
votes
16answers
1k views

Could I ever want to access the address zero?

The constant 0 is used as the null pointer in C and C++. But as in the question "Pointer to a specific fixed address" there seems to be some possible use of assigning fixed addresses. Is there ever ...
24
votes
4answers
19k views

Why don't I declare NSInteger with a *

I'm trying my hand at the iPhone course from Stanford on iTunes U and I'm a bit confused about pointers. In the first assignment, I tried doing something like this NSString *processName = ...
24
votes
6answers
774 views

Is there any point to temporarily making a pointer NULL?

I've seen lots of code like this: SomeType* ptr = NULL; ptr = SomeMethod(some, params); What's the point? I've also seen it where ptr is declared somewhere else (for example in a class definition) ...
23
votes
7answers
5k views

What is the difference between char a[] = “string”; and char *p = “string”;

The original title of the question was: What is the difference between char a[] = ?string?; and char *p = ?string?;? The title has been modified to yield better search results when users search ...
23
votes
3answers
23k views

What does “dereferencing” a pointer mean?

What does it mean to dereference a pointer? Can I please get a explanation with an example?
23
votes
5answers
872 views

Why doesn't *(int*)0=0 cause an access violation?

For educational purposes, I'm writing a set of methods that cause runtime exceptions in C# to understand what all the exceptions are and what causes them. Right now, I'm tinkering with programs that ...

1 2 3 4 5 235