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

learn more… | top users | synonyms (1)

-1
votes
1answer
58 views

c char pointer assignment

I'm having problems with assigning a value to char pointers. #include<stdio.h> int main(int argc, char* argv[]){ char line[200], *p, q; int i=0; FILE* f=fopen(argv[1], "r"); ...
0
votes
0answers
35 views

compare 2 managed object addresses in unmanaged code

breaking my head to get solution to a problem, I need to compare 2 managed object in unmanaged code. i.e compare if I already accessed to managed object,the compaction is in unmanaged code. my ...
0
votes
4answers
62 views

C functions multiple results multiple types

I'm coding a SCPI parser (as a lib). The device or application functions by the lib user need to be able to output multiple results in multiple types (not mixed types, i.e., multiple results of type A ...
0
votes
1answer
60 views

How can I set the value of an uninitialised pointer in a function in C?

I'm currently doing an assignment in C and it's the first time that I've really had to understand pointers. I'm mostly getting the hang of it, but it's thrown me into the deep end (at least in my ...
0
votes
0answers
48 views

Declare pointer to a set(self-defined) in c and the program not responding

I'm learning Master Algorithms with C, and I in the set covering problem at the end of ch7, regarding how to remove the each covered member(determined by the largest spanning set that cover the big ...
4
votes
3answers
127 views

What is the difference between '*(<type> *) &x' and 'x'?

What is the difference between int i = 123; int k; k = *(int *) &i; cout << k << endl; //Output: 123 And int i = 123; int k; k = i; cout << k << endl; //Output: 123 ...
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 ...
1
vote
2answers
58 views

Change what a pointer points to after you return it in C++

I'm working on a C++ project and I need a little sanity check and help on it. I want to return a void* pointer to a memory location in an array (which I'll do by void* pointer = (void*) ...
0
votes
3answers
68 views

Get Pointer Value

I am new to c++ pointers, and I have an issue with getting a value from a pointer. I have a pointer, verticesPosBegin , which points to the beginning of an array used to hold vertex positions. Each ...
1
vote
1answer
33 views

write pointers to pipe, are there any strict aliasing or pun type issues?

I need to create many FIFO queues in a program, which is used for communication between threads in the same process. I think I can use pipe() for this purpose, because in this way, I can use select ...
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?
-2
votes
1answer
78 views

What is the difference between these two strings? [duplicate]

PART 1 I have 2 strings and they are defined in following ways- char s1[] = "foo"; char *s2 = "foo"; When I try to change a character of these strings, say, the 2nd character - char s1[1] = 'x'; ...
0
votes
0answers
11 views

How to deep copy a btTriangleMesh in Bullet Physics?

I use Bullet Physics and I need to copy an instance of the btTriangleMesh type. // the variable is a class member btTriangleMesh triangles; My aim is to change the collision shape of a body to a ...
-1
votes
0answers
58 views

How %s format conversion work in C? [closed]

Suppose I write a code like this: char *arr = "Hello World"; printf("%s", arr); As I know, it prints the whole string by traversing character by character until a NUL (\0) character is found. ...
0
votes
1answer
49 views

Virtual method of copy of Pointer not working

I'm having a problem with Overriding methods on C++ First, everything worked just fine, then, I made some changes to keep the code more "organized" and to share on GitHub. After doing some OO ...
1
vote
1answer
44 views

passing argument from incompatible pointer type

static struct dll_wifi_state **dll_states; enum dll_type { DLL_UNSUPPORTED, DLL_ETHERNET, DLL_WIFI }; struct dll_state { enum dll_type type; union { ...
0
votes
1answer
70 views

Interesting mistake in string pointer

I created a function which transforms a number to its equivalent in given base and prints it into a string. It looks like flawless but gives absurd results. Code below should translate 100 to base 9 ...
0
votes
4answers
103 views

Understanding simple pointers in C

int main() { int *p1,*p2; int a; p1=(int *)malloc(sizeof(int)); p2=(int *)malloc(sizeof(int)); p1=&a; p2=p1; a=10; printf("\n%d\n",*p1); printf("\n%d\n",*p2); ...
0
votes
1answer
41 views

Conversion warning. and Class error

I'm learning C++, and in an assignment I'm doing right now, I get a bunch of warnings that I suspect are causing the two errors I'm getting as well. The problem is that the lines where the warnings ...
0
votes
1answer
31 views

Locally declared object's internal memory intact outside scope?

The function f1 creates an instance of foo and sets foo.ptr[0] = 2. #include <iostream> using namespace std; class foo { public: int *ptr; inline foo(int a) { ...
1
vote
3answers
53 views

How to declare a pointer to a function of return type X and input parameter A?

What is the general form of declaring a pointer to a function which, say is of return type X and accepts the input parameter &Y? is it: X my_function(Y &y){ //code } X (*my_pointer) (Y ...
0
votes
2answers
53 views

Pointers to automatically null when object is deleted

Say I have an object and 10 pointers to it in several other objects of varying class types. if the object gets deleted, those pointers have to be set to null. normally I would interconnect the ...
-2
votes
3answers
93 views

Using Integer And Char Pointers in C++ or C?

int *ab = (int *)5656; cout << *ab; //Here appcrash. int *ab; *ab = 5656; cout << *ab; //These block crashes the app too. But i can get the hex value of content of pointer if i write ...
-3
votes
1answer
63 views

Passing a double pointer to a function as reference - c

I'm having hard times trying to pass the reference of double pointer to a function. I have this: #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_ROWS 2 ...
1
vote
0answers
79 views

2D Array seems to change values as c++ class member

I have got a strange behavior when using a double pointer to array in my programm like this: /* in a.h */ class A{ private: int _n; int _m; int _p; int _dim; int** ...
1
vote
3answers
50 views

Loading Data From Comma Separated Text File to 2D Array?

I am trying to load data from a text file that looks like this: 161,77,88,255 0,44,33,11,111 etc. I have functions to manipulate it, and am ensured that the array is the correct size (which may ...
0
votes
4answers
77 views

Pointers to char* inside a struct in C

I have a probably stupid question... but I have defined a struct with some char* inside. Now when I try to change the values of that chars. It doesn't give problems when it's compiled, but when I ...
0
votes
2answers
53 views

How can I get private information from a class pointed to by a private pointer inside another class?

I have a class, Player, with member variable Creature *character which will point to Elf : public Creature derived class. I want to be able to declare a Player object and then have one of its members ...
0
votes
4answers
73 views

Why compiler don't generate a warning or error if some restrict pointers point to the same object?

If we have a function: void func(int *restrict a, int *restrict b, int *restrict c) { *c = *a + *b; } In principle, this code may lead to some error: int aa = 1; func(&aa, &aa, ...
0
votes
4answers
49 views

Run-time error in program

int main() { char *p="abcd"; while(*p!='\0') ++*p++; printf("%s",p); return 0; } I am not able to understand why the code does not run. The problem is in the statement ++*p++, but what is ...
0
votes
2answers
37 views

Process in which new nodes are added to a linked list in C

I know how the program works but i can't wrap my head around the concenpt. Here is the main function: void main() { lista node1, p, q; int n, i; int a; node1 = NULL; printf("data = "); scanf("%d", ...
0
votes
3answers
49 views

Removing item at pointer location from memory c++?

I've had to create a linked list type structure that takes advantage of STL. In there is a method that has to delete objects from this linked list structure. I currently have the method re-linking the ...
-4
votes
1answer
45 views

Pointer Array displaying a struct [closed]

Description: Write a program that creates a struct, an array of those structs, and an array of pointers which points to each element of the array of structs, then reads in the info from a data file ...
0
votes
1answer
71 views

how to derive a class from another in c++?

I am trying to build a list of games that I have. I have a class named gameCommon class gameCommon { public: string name; int price; } This is the common information all games have. Now the next ...
0
votes
0answers
16 views

C# keeping values of object pointers for further retrieving

Hope someone can help me with this. I have a method (user_login) than prompts for a user to login and then generates and returns an invoice and a token. The problem is that if the user has already ...
0
votes
2answers
63 views

how to release the memory for a structure, pointer for each iteration of loop

I have a structure typedef struct { unsigned ccc; unsigned ddd; unsigned aaa; unsigned bbb; string ddd; } objinfo; which has be involved in the following places in my code: objinfo ...
0
votes
5answers
46 views

Pointers typecast

I have the followig code and I want to know why I have the following output: #include <iostream> int main() { double nValue = 5; void *pVoid = &nValue; short *pInt = ...
7
votes
5answers
208 views

Why printf(“%s”,(char[]){'H','i','\0'}) works as printf(“%s”,“Hi”), but printf(“%s”,(char*){'H','i','\0'}); fails? [duplicate]

I really need help on this.It has shaken my very foundation in C.Long and detailed answers will be very much appreciated.I have divided my question into two parts. A: Why does ...
1
vote
1answer
22 views

How to make alternative name for UILabel's text attribute?

Probably a real newb question. I've got a UILabel called routeOutLabel. I want to make it easy to access its text attribute. I was thinking of doing something like this: @synthesize routeOutText = ...
-3
votes
2answers
96 views

How to avoid using pointers/typedefs in C++

Whenever I write C++ code, I always end up using pointer types and -> to reference member functions. Is there anyway for me to avoid code that looks like this: typedef Node *NodeRef; typedef Graph ...
0
votes
5answers
43 views

Pointer dereference in an assignment

I was watching a lecture and got confused at a point when professor said that ptr=&x denotes a variable ptr assigned the address of the variable x. And for y=*ptr+1 he said *ptr denotes the ...
0
votes
1answer
29 views

Property doesn't match type of instance variable?

I took some sample code from Apple's SimpleFTPSample Which looks like this: @interface PutController () <UITextFieldDelegate, NSStreamDelegate> ... @property (nonatomic, assign, readonly) ...
0
votes
3answers
65 views

Not working / with own Strncpy function

I'm having probs with an own function that should make str2 copied to str1 based on the amount of characters. char * strncpy_own(char * str1, char * str2, int c) { int i; for( i = 0; i < ...
1
vote
1answer
50 views

How to let two threads exchange data via a pointer?

I want an asynchronous thread to edit an object. Therefore I store a pointer to that object. Data *pointer; There is also a flag of type std::atomic<bool> to know if the secondary thread is ...
2
votes
2answers
55 views

Pointer to contiguous 2D array

I'm using gcc version 4.8.0 with flags -Wall -std=gnu99. I need to dynamically allocate the memory for a contiguous 2D array using malloc in C; this fact is nonnegotiable. However, for ease of use I ...
1
vote
3answers
62 views

Are pointers used when copying a class with huge array member?

I have a class storing an multidimensional array as member. struct Structure { Structure() { memset(Data, 0, sizeof Data); } int Number; int Data[32][32][32]; } When I ...
-1
votes
1answer
68 views

Padding arrays in C++ without translating indices

Here is what I have: int t[MX]; Now, I'd like to rewrite that code so as to effectively add a single element to the beginning of that array, without having to translate all of the indexing by 1 in ...
1
vote
1answer
61 views

Pointer to multidimensional array

I'm trying to address matrix of struct, but some goes wrong. This the code: typedef struct { bool state; float val; char ch[11]; } st_t; st_t matrix[3][5]; int main(int argc, char ...
-2
votes
1answer
51 views

about sizeof(char *) and sizeof(char[]) [duplicate]

char *str1 = "pupupupu"; char str2[] = "pupupupu"; printf("%s\t%d\n", str1, (int)sizeof(str1)); printf("%s\t%d\n", str2, (int)sizeof(str2)); Output: pupupupu 8 pupupupu 9 My question: Why ...
1
vote
5answers
82 views

C++ pointer issues

i am trying to create a simple (modularized) c++ program that reads the users input and spits it back out. #include "stdafx.h" #include <iostream> #include <fstream> #include ...

1 2 3 4 5 236