A pointer is a data type that "points to" another value stored in memory using its address.
2
votes
4answers
94 views
C++ pointer to char arithmetic
If I add 1 to a pointer, the actual value added will be the size of the type that the pointer points to right? For example:
int* num[5];
cout << *num << ", " << *(num + 2) << ...
0
votes
2answers
56 views
Use variables defined in a different source file
i want to get a value from another cpp file
for example this one is in fileone.cpp :
for (int i = 0; i < NSIZE(facerects); i++)
{
DetPar detpar;
detpar.x = facerect->x + ...
3
votes
2answers
64 views
Pointers between OpenCL buffers
Consider the following. In a context there exist two buffers allocated in device memory, buffer A and buffer B. One buffer contains a pointer to something in another buffer. Assuming the host will ...
1
vote
1answer
29 views
how to recheck file in Arduino SD card
I am trying to create a list of files on my SD card this is easy enough to do once but the moment I run the program more than once the list become either shortened or the program say there is no files ...
1
vote
3answers
49 views
pointer of char and int
Hi I have a simple question
char *a="abc";
printf("%s\n",a);
int *b;
b=1;
printf("%d\n",b);
Why the first one works but the second one doesnot work?
I think the first one should be
char ...
-3
votes
1answer
47 views
c++ catch catch bad_alloc and delete pointer
i have the following function and my problem is that i can't delete temp in the catch because it says that temp is undeclared but i don't understand why? any help is appreciated.
...
1
vote
2answers
30 views
Pointer to a BitmapImage in a class
I'm creating a class, Plants. There will be many objects created from this class. Each object will need to contain a BitmapImage of the Plant.
However, there are only about 20 different kinds of ...
0
votes
3answers
73 views
C++ Losing Template Data
I don't consider myself all that knowledgeable in C++ but I'm having a hard time with this concept. So I have a class the holds some template datatype and a double. I want the m_data variable to be ...
0
votes
8answers
96 views
Pointer function confusion C++
I'm working my way through Jumping into C++ and I just reached the sections on pointers and consequently, my first wall. I'm trying to solve this problem:
Problem 13.4
Write a function that takes ...
4
votes
2answers
112 views
C++ - Polymorphic pointer to member functions
I'm not very good at C++ (but I'm familiar with OOP/Java), but I have to create a game for my C++ class. I want to setup a kind of game engine like that used for Flash games written in ActionScript.
...
-3
votes
4answers
77 views
Reverse a string in C using a function [closed]
I have searched and read just for days trying to resolve this issue.
I am simply trying to reverse a string in C using my own functions, but I am stumped now and haven't been able to move forward in ...
2
votes
3answers
120 views
Pointer to a constant
#include <iostream>
using namespace std;
int main(void)
{
const int a1 = 40;
const int* b1 = &a1;
int * c1 = (int *)(b1);
*c1 = 'A';
cout<<*c1<<endl;
...
2
votes
5answers
106 views
difference between *head and (*head) pointers in C
The following is a sample code, not the working one.
I just want to know the difference between *head and (*head) in pointers in C.
int insert(struct node **head, int data) {
if(*head == ...
0
votes
1answer
30 views
Ask about pointer and access memory in C#
I have a problem but i don't understand about it, i don't know root cause of problem.
I hame a small program and when run it on win 7 (64 bits) access violation exception occurs. This exception does ...
4
votes
2answers
132 views
Pass function to another function by pointer and by name [duplicate]
I'm learning function pointers and this example from wiki:
int add(int first, int second)
{
return first + second;
}
int subtract(int first, int second)
{
return first - second;
}
int ...
0
votes
2answers
52 views
incompatible pointer type in c pointers
#include<stdio.h>
#include<stdlib.h>
struct node {
int data;
struct node *next;
};
int insert (struct node *head, int data);
int print (struct node *head);
int main()
{
...
1
vote
2answers
53 views
Facing issue of 'Stack Corruption' on function return
I get the error as "stack corruption detected : aborted" randomly on a function return. My code is as below:
struct SND_RCV_CMD_t
{
int nRspFieldsCnt;
char** rspValues;
}
void ...
0
votes
2answers
40 views
doubly linked list, current.next = null
Doing a homework problem, the first item inserted into the linked list inserts fine, when I insert more values they appear out of order because current.next remains == null according to debugger, I ...
0
votes
3answers
63 views
Pointer to Pointer in Objective-C
I'm trying to learn to play with pointers here.
I have a UIImageView. I need to point its image property to another UIImageViews image property, so that whenever I change the second UIImageViews ...
1
vote
2answers
34 views
Access violation reading location 0x00000000. with argv[]
I am running the following program and got errors
First-chance exception at 0x0f32d440 (msvcr100d.dll) in c.exe: 0xC0000005: Access violation reading location 0x00000000.
Unhandled exception at ...
-1
votes
2answers
61 views
Print values of void pointer
I have a funciton that returns a void pointer. Lets say I know that the block of data pointed at is an array of ints. How can I print them?
From another thread I saw that I cast the void as my ...
-1
votes
1answer
55 views
Why passing a simple pointer in this simple example will not work
Why modifying ptr has no effect
on vector?
I'm trying to change value through f function.
void f(int *ptr, int size, int value){
ptr=(int* )malloc(sizeof(int));
if(ptr!=NULL){
int i;
...
1
vote
2answers
31 views
How to scan buffer, which is defines in structure, correctly?
This is my structure:
struct Data{
char *buffer[MAXBUFF];
int bufferSize;
};
This is how I call my function searchInFile:
searchInFile(logFile, outFile, &dat);
This is searchInFile ...
0
votes
4answers
85 views
How to declare a linked list in c
struct node {
int data;
struct node *next,*prev;
};
void insert(struct node *head,int data){
if(head == NULL){
head = (node *)malloc(sizeof(node));
--- code continues-----
I just want to know the ...
0
votes
1answer
38 views
Passing private member pointer to Unmanaged Function C++/CLI
I am having trouble passing an unmanaged pointer (stored as a member in a managed wrapper) to an unmanaged function that requires a double pointer (pointer to the stored unmanaged pointer). This ...
8
votes
6answers
270 views
C++ Pointer: changing the contents without changing the address?
MyCustomObject * object=new MyCustomObject();
Assume the object pointer is used by many of my classes, but all of a sudden I want to change the contents of the pointer without changing the address.
...
1
vote
1answer
73 views
How to get a member of the structure if offset is known?
So, I have a structure
struct foo
{
int a;
int b;
int c;
char *string;
};
typedef struct foo foo;
And I have a function
void fun(void *data1, void *data2, int offset){
int num1 = *(int ...
0
votes
2answers
89 views
adding char[] to char** (string to a list of strings)
The program should create strings depending on input. we want to add these strings to a list, which is passed to the function as a pointer (to other char * pointers).
the code looks like this:
void ...
0
votes
2answers
53 views
c++ passing function as argument to another function with void pointer
I'm trying to pass a function as argument to another function with void pointer and it doesn't work
#include <iostream>
using namespace std;
void print()
{
cout << "hello!" << ...
-1
votes
1answer
60 views
“called object is not a function” error - C
int getSpeedOfMotorInPercent(int RPM)
{
int speedOfMotor = (RPM/5000.0)*100;
return speedOfMotor;
}
static char *test_GetSpeedOfMotor(int speedInPercent)
{
mu_assert("error, RPM != 70%", ...
0
votes
1answer
93 views
Issue with passing pointer-to-a-pointer
I'm passing crazy amounts of pointers in my C program and I need help to figure out if I'm doing it right.
I declare a pointer to an array structures (containing 3 fields, 1, the relevant one, is an ...
0
votes
4answers
52 views
Pointers and references to 'char buffer[128]'
I have a simple program:
char buffer[128]; // creates an array of 128 elements
memset(&buffer, 65, sizeof(buffer)); // fills buffer with 'A' (ascii 65) letter
cout << ...
3
votes
2answers
169 views
Is the printf statement valid?
int main()
{
struct a
{
struct a *next;
struct a *prev;
};
struct a *A[2];
printf("Address of (&(A[0])->next) = %p",(&(A[0])->next));
getch();
...
1
vote
11answers
98 views
C++ beginner qustion about pointers
so, got my pointer:
int *p = new int(10);
And i print out the following things:
&p which is: 0xbdee018
and
p which is: 0xb8c254b0
"&p" is stands for the address of the pointer, and ...
0
votes
4answers
94 views
Explain variable declaration in C
I found this declaration in a C program
char huge * far *p;
Explanation: p is huge pointer, *p is far pointer and **p is char type
data variable.
Please explain declaration in more detail.
...
1
vote
2answers
79 views
Is casting the best solution here? [closed]
I was wondering if casting here is the best solution:
This is the function prototype:
void function(unsigned char * data)
This is how I intend to use it (nSize is read from):
unsigned int nSize = ...
1
vote
7answers
95 views
C++ Pointers and Deletion
This is a simplified version of some code that I have. Since pointerB in class A is set to pointer, beta, in the client code which points to allocated memory, would i have to free the memory pointed ...
0
votes
2answers
62 views
Pointers and Object slicing
I'm learning the hard way about object slicing, and I'm wondering if it is possible for a pointer to ever be object sliced. In other words:
Can pointers ever be victims of object slicing or are you ...
0
votes
9answers
70 views
accessing member of structure within a class
I have an .hpp and .cpp file. I want to access the variable in the structure within a class which happens to be in the header .hpp file, in the .cpp file.
In .hpp, I have
class foo{
public:
...
0
votes
2answers
26 views
Assembly languaje, base pointer
i was reading an example in assembly languaje, and i have a little doubt. We were using assembly only on our programs, but the last unit on the semester it's to merge it with turbo c (in-line ...
0
votes
3answers
90 views
Dereferencing array pointer in a function
How do you deference a pointer to an array to get the value stored in it? For example:
void testFunction(int **test){
printf("%d", *test[1]);
}
int main()
{ int test[10];
test[1] = 5;
...
1
vote
0answers
73 views
Difference between double** and &arr, where arr is a double[] [duplicate]
I am using C. I have a double array like this:
double arr[3]={1,2,3};
Next, I assumed that a
double[]
is just like
double *,
and thus I created this pointer variable:
double ** ppdArr = ...
0
votes
1answer
27 views
python pointers and memory space of user defined objects in lists
I am hoping that someone has a quick fix to this problem I am having.
I would like to be able to count the occurrences of a user defined object within an iterable. The problem is that when I create ...
-2
votes
1answer
26 views
python ctypes to pass a pointer to a pointer to a struct dynamically allocating
I'm attempting to use python ctypes to pass the appropriate variables and pointers to a function in a DLL file.
Immediately below is the function description provided in the DLL documentation:
...
0
votes
1answer
81 views
C++ inserting unique_ptr in map
I have a C++ object of type ObjectArray
typedef map<int64_t, std::unique_ptr<Class1>> ObjectArray;
What is the syntax to create a unique_ptr to a new object of type Class1 and insert it ...
0
votes
5answers
69 views
c strings, char pointers: need help printing the string and some advice
so far i have this code:
char *str;
scanf ("%s", &str);
printf("%s",&str);
system("pause");
it works, but the problem is after i press a key to continue the program (or end it), i get the ...
2
votes
4answers
56 views
Getting a copy of an object
I don't fully understand when Java passes a copy/value and when it passes a "reference" (the pointer).
I'm trying to assign a copy of a static object I have, but I'm not sure how to go about it.
I ...
2
votes
1answer
86 views
How to memory allocate a pointer inside a pointer?
I'm new in C programming (my main area is java) and in java there exists the ArrayList which I can make like
ArrayList<Class> arraylist = new ArrayList<Class>();
where my class ...
2
votes
4answers
83 views
How to pass a pointer to a struct into a function using C Language?
i'm new to developing with c. sure enough there'd come a day i need your help. And I guess this time is now :)
What I am trying to do:
I am experimenting with MySQL Api in C. For that i wanted to use ...
2
votes
2answers
91 views
c++ boost::any using the value without knowing the type
I have successful saved variables without knowing their type using boost::any. But I was wandering whether it is possible to use them without actually convert them back to the original type. here is ...





