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

learn more… | top users | synonyms (1)

-2
votes
1answer
50 views

Segmentation Fault on using pointers instead of array

while(!feof(fname)) { fscanf(fname,"%c",buf); printf("%c",*buf); buf++; } When I use this code, the compiler gives me a segmentation fault(core dumped). But instead of this if I ...
0
votes
2answers
35 views

Two dimensional array and pointers in c

int s[4][2]={1,2,3,4,5,6,7,8}; printf("\n%u,%d",s+1,*(s+1)); Ans 2665496,2665496 In two dimensional array (s+1) gives the address of second row but why *(s+1) is not giving the value 3?
1
vote
6answers
69 views

c++ pointer always on the same address even if not deleted

I am playing with C++ pointers. I allocated memory to a pointer but I didn't free it afterwards. The next time I ran the program the pointer resides on the same address - why? Shouldn't OS see that ...
3
votes
2answers
118 views

Writing strend(s, t) (check if `s` ends with `t`) using pointers

I am writing an implementation of strend(s, t), which checks if a string s ends with string t. Example, if - char s[] = "abcdefoo"; char t[] = "foo"; then, strend(s, t) is true because "abcdefoo" ...
2
votes
3answers
87 views

Subtracting null pointer from a normal pointer?

I came across this function: int foo(int *p) { return p - (int*)0; } Can someone explain what this does?? It seems to return an integer. Whats the logic behind this subtraction a ...
2
votes
2answers
59 views

Remove elements from pointer array

I have a program in which I need to work with pointer arrays. My problem is that I do not know how to delete element i from pointer p (p[i]). I will detail the problem below. I have the structure: ...
0
votes
0answers
48 views

Default constructor of class with pointer inside

Let consider following code (behavior of certain lines is described in comments): #include <iostream> #include <string> class Foo { char* arr_ptr; int arr_len; public: Foo() { ...
1
vote
2answers
59 views

Objective-C, what is the return value of getting a property from a nil pointer?

I always thoughts that sending a message to a nil pointer would normally return 0. So the same would apply to properties. But then this code snippet seems to contradict my assumptions NSArray ...
56
votes
10answers
28k views

C++: Pointer to class data member

I came across this strange code snippet which compiles fine: class Car { public: int speed; }; int main() { int Car::*pSpeed = &Car::speed; return 0; } Why does C++ have this ...
0
votes
1answer
33 views

Implicit pointer cast in parameter and argument of functions

If 2 function definitions are: void func(struct Node *arg){...} void func2(void *arg){ func(arg); ... } but they are called like: struct Node *node = (char ...
302
votes
32answers
21k views

What are the barriers to understanding pointers and what can be done to overcome them?

Why are pointers such a leading factor of confusion for many new, and even old, college level students in C or C++? Are there any tools or thought processes that helped you understand how pointers ...
2
votes
2answers
105 views

Difference between array and pointer [duplicate]

Yesterday I had a little trouble with a homemade "strcpy" function. It works now though but I'm a little confused! char* a = "Hello, World!"; //Works char b[] = "Hello, World!"; //Works also ...
3
votes
3answers
236 views

Understanding strings and arrays

Consider this code. int main() { char *s, *t; s = malloc(4 * sizeof(char)); strcpy(s, "foo"); t = s; printf("%s %s\n", s, t); // Output --> foo foo strcpy(s, ...
3
votes
5answers
73 views

How can the output be explained? [duplicate]

I am dealing pointers in c and when i run the following code i get "l" as the output! Why? char *s = "Hello, World!"; printf("%c", 2[s]); What does 2[s] signify?
-5
votes
2answers
138 views

How does C interpret int in pointers and why it differ from char pointer?

#include<stdio.h> void main() { int *c=12345; printf("dec:%d hex:%x", c ,&c); // (1) } The line (1) prints dec:12345 hex:8af123 where 8af123 is obviously the address which is ...
4
votes
1answer
75 views

Pointer representation

I have a question about the pointers representation in C. If I have correctly understand this paragraph of the C11 standard : C11 (N1570), ยง 6.2.5.28, Types, p. 36 Similarly, pointers to ...
0
votes
1answer
16 views

Calling an unmanaged c++ function having arguments as pointers from VB.Net

I've the following function written in unmanaged c++, and I'd like to call it from VB.net code. The main problem for me is the function asks for the first argument to be passed as a pointer. And in ...
0
votes
1answer
31 views

Thread exiting with uncaught exception group=0x40015560

Gday guys, im having an issue with an assignment for uni. The idea is that a particle is created when and where the screen is touched. Im getting an uncaught exception when the program attempts to ...
4
votes
4answers
3k views

C function pointer casting to void pointer

I am trying to run the following program but getting some strange errors: File 1.c: typedef unsigned long (*FN_GET_VAL)(void); FN_GET_VAL gfnPtr; void setCallback(const void *fnPointer) { ...
2
votes
5answers
118 views

How dangerous is it to use pointer-style assignment versus setter-methods in Objective-C?

Lets say I have a simple class like the following: @interface A { // @public int var; } // @property(some_property) int var; @end When I want to access the variable var, I have some options. ...
4
votes
4answers
116 views

Does the C++ compiler generate “this” pointer for all member methods, or only for those who reference members?

Does the C++ compiler generate the hidden "this" pointer for all member methods, or only for those who reference members?
1
vote
1answer
37 views

memory deallocation doubly linked list C++

I have created my own implementation of a doubly linked list for learning purposes. I am doing some testing to make sure the memory is being deallocated correctly. In main.cpp, I have the following: ...
3
votes
3answers
41 views

Assigning values to pointers?

In Dennis Ritchie I found this, struct rect r , *rp = r; then these four expressions are equivalent : r.pt1.x rp->pt1.x (r.pt1).x (rp->pt1).x ...
5
votes
6answers
4k views

Char array vs Char Pointer in C

I am trying to understand pointers in C but is currently confused with the following: char *p = "hello" - this is a char pointer pointing at the the character array, starting at h char p[6] = ...
0
votes
2answers
103 views

char* and char arr[] Difference - C++/C [duplicate]

Just starting out in C++, I was wondering if someone could explain something. I believe you can initialise a char array in the following way char arr[] = "Hello" This will create a Char array ...
1
vote
1answer
33 views

Casting id to pointer to an NSError pointer (NSError **)

I have an NSError ** stored in an array (so I can get it as such array[0]). I'm trying to cast it into a variable: NSError * __autoreleasing *errorPointer = (NSError * __autoreleasing *)array[0]; so ...
0
votes
1answer
45 views

Firebreath C++ some pointer understanding

I asked one question here Get mouse screen coordinates on click and got a good answer (confirmed one), thx Gaurav Raj for this. And in this sample: bool ...
12
votes
6answers
412 views

Is this[0] safe in C++?

This earlier question asks what this[0] means in C#. In C++, this[0] means "the zeroth element of the array pointed at by this." Is it guaranteed to not cause undefined behavior in C++ to refer to ...
-7
votes
1answer
97 views

What does *int mean? [closed]

I know what a pointer is, but during some coding exercises i had a typo and instead of int* used *int. I understand it's wrong, but does it mean something in C (e.g syntactically valid)? is it ...
1
vote
2answers
21 views

ANSI C: Anonymous pointer in struct to array of strings - problems?

I must be missing something obvious... I'd like to have an empty pointer to array of strings in my struct : typedef struct SCR_SETTEXT_DESC_S { uint_8 Value; //Current value - copy made ...
3
votes
3answers
46 views

Pointer passing to function header

I have another problem regarding pointers. I have a function with the following header: addActor (NxuPhysicsCollection &c, NxActor &a, const char *userProperties=0, const char *actorId=0) ...
9
votes
11answers
13k views

C++: how to cast 2 bytes in an array to an unsigned short

I have been working on a legacy C++ application and am definitely outside of my comfort-zone (a good thing). I was wondering if anyone out there would be so kind as to give me a few pointers (pun ...
-1
votes
8answers
173 views

On Linux, in C/C++, will a pointer ever have the MSB set?

I want to use a long integer that will be interpreted as a number when the MSB is set otherwise it will be interpreted as a pointer. So would this work or would I run into problems in either C or C++? ...
0
votes
5answers
69 views

Having trouble dynamically allocating an array with a created class in C++

I've actually managed to successfully do a dynamically allocated array with a normal data type, but it was a while ago (like, six chapters!) And I can't figure out why I can't set the array ...
0
votes
5answers
83 views

Singleton destructor called error [duplicate]

#pragma once #include <time.h> class CTimer { time_t _last; CTimer() { _last = time( NULL ); } CTimer(const CTimer &); CTimer& operator=(const CTimer&); ...
0
votes
4answers
159 views

C++: better to keep reference or pointer? [closed]

This might be regarded as a style question. I have a class that keeps a reference to an instance of another class: class A { }; class B { A& ref; public: explicit B(A& ref) : A(ref) { } ...
-1
votes
2answers
110 views

C array = array faster than memcpy() [closed]

I have a piece of C code which I am trying to optimise which involves setting an array a to b. I am currently using memcpy to achieve this, and it works, however it's not fast enough. I.e. double ...
5
votes
3answers
98 views

why can a base pointer point to derived object only under public inheritance?

I think its because the base class data members and methods wont be accessible , but I'd like some more clarity on this. Also, is this the reason why polymorphism (using virtual functions) is possible ...
-8
votes
1answer
82 views

Where should a pointer asterisk be placed when accessing members? [closed]

Edit: Thanks for all the constructive comments. The key cause of this question was the pointer-to-member syntax which is a bit odd and rarely used (as I've come to read now) and thus when seen it can ...
3
votes
7answers
77 views

What does char * argv[] means?

I'm new to C programming, I encountered a problem. In case of complicated declarations i found this int *daytab[13]; // daytab is an array of 13 pointers to int which means daytab is the name of ...
7
votes
3answers
92 views

Test the pointers using relational operator in for loop

Suppose I have the for loop which store zeros in an array using pointers like this: int *vp, values[5]; for(vp = &values[5-1]; vp >= &values[0]; vp--) *vp = 0; The book-Pointers on C ...
0
votes
0answers
65 views

android app development, ontouch, differentiating between multiple touches

I am implementing an app where i need to be able to identify multiple gestures. i.e. When the user swipes right do A, when user swipes left do B, When user swipes left and right at the same time do C ...
2
votes
2answers
41 views

Copying indeterminate pointers in C

C11 standard says the following (6.2.4p2): The lifetime of an object is the portion of program execution during which storage is guaranteed to be reserved for it. An object exists, has a ...
1
vote
1answer
31 views

Does this type casting assign the address or the data?

cell is of type UITableViewCell* LocationCell *locationCell = (LocationCell *)cell; Is this assigning the address of cell to locationCell and preserving the same instance of the object? Would it be ...
2
votes
2answers
34 views

How do I store an Object's functions pointers in an array?

I am trying to store function pointers of an object's functions in an array.But it's giving me problems when I want to access another property of the object within the function.Could any one solve ...
0
votes
4answers
50 views

Passing scalar and array data in C++ with pointers

I have programmed for many years in FORTRAN and am trying to learn C++ and transfer some old programs to C++. I need to be able to create an array in the function and pass it back to the main program ...
1
vote
1answer
47 views

printing a wchar_t in visual studio and eclipse gives different results

I am using eclipse and Visual Studio on a windows x64. When I print the following string in visual studio by incrementing the pointer by 1, it displays correct result in visual studio. But in eclipse ...
-6
votes
2answers
46 views

Pass pointer by value or reference [closed]

I have an array of structures. I pass the pointer (first element of array) to a function. I wonder whether the argument passes by reference or value. If it is like the latter, how I can pass it by ...
-1
votes
1answer
50 views

Null/void pointer incorrect value

We are returning a pointer to a struct in one of our functions. When we print out one of the values of the struct in our main, it is correct. However, when we pass that pointer to another function, ...
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 ...

1 2 3 4 5 236