A pointer is a data type that "points to" another value stored in memory using its address.
0
votes
1answer
34 views
What is a performance-critical hotspot and its purpose?
I´m reading C# 5.0 in a Nutshell (O'Reilly) and in the first chapter there is a section that talks about Memory Management. This sections explains about the the unnecessary usage of pointers in C#, ...
-1
votes
1answer
13 views
Downcasting and deleting the pointer. C++
I never see any destructors called doing the following.
class Base
{
public:
Base()
{
std::cout<<"Constructing Base" << std::endl;
}
// this ...
-2
votes
0answers
21 views
How to “point” to rows from another SQL table?
I have a table of reports and a table of records.
Say the June report in reports has 12 corresponding records in records.
Is there a way to reference that information without actually duplicating ...
0
votes
1answer
42 views
invalid initialization of reference of type 'delai_assemblage*&' from expression of type 'delai_assemblage'
hi every body i have a problem in language C and i can't fix it here is my code :
void demande_usine_stockage(entrepot *u_s,fournisseur f[],int *demande,delai_appro &d_a,delai_ass ...
1
vote
4answers
63 views
wrong output from a simple C code block
I expect the output is "Sunday Monday", but the actual output is "Monday Monday",Why this?
#include <stdio.h>
#include <string.h>
static const char *msg[] = {"Sunday", "Monday",
...
0
votes
1answer
29 views
Marshalling structure with pointer to another structure
Is there a better way to achieve the following? I have a structure which contains a pointer to another structure, which then contains a pointer to a string.
Right now I am simply declaring then ...
4
votes
4answers
85 views
C pointer arithmetic for arrays
I'm reading the section on array arithmetic in K&R and came across something curious. I posted the whole paragraph for context, but I'm mainly focused on the bold part.
If p and q point to ...
0
votes
3answers
72 views
static pointer c++ usage
I'm new to c++ and this was kinda confusing to me
I was trying to understand some code source where it's doing something like
Using 3 static pointers to 3 classes
allocating that 3 pointers from the ...
-1
votes
6answers
82 views
How do I write functions which accept two-dimensional arrays when the width is not known at compile time?
Is it possible to write a function which accept 2-d array when the width is not known at compile time?
A detailed description will be greatly appreciated.
0
votes
0answers
66 views
return value vs return reference in C++ [duplicate]
It seems like that returning reference is not a good practice (Is the practice of returning a C++ reference variable, evil?).
For this example, which would be better: return reference or return ...
-1
votes
2answers
133 views
Does C even have “pass by reference”?
I heard that in "c" that there are we can pass the arguments via "call by value" or "call by reference".
But in one book it's mentioned that there are we can pass the arguments via both way but there ...
0
votes
3answers
31 views
Pointer to a class access public member function [duplicate]
How does below program prints "Show Called" ? I guess it should have been run-time error since value of obj ptr is NULL.
#include<iostream>
using namespace std;
class ex
{
int ...
-6
votes
0answers
39 views
How to identify the output according to some condition using java? [closed]
I want the program read all elements in the line/array. The output will be the line which contains [b,c] in sequence. For example:
Let say this is the input:
Line 1:
a
b
c
d
...
1
vote
1answer
81 views
Example in K&R accessing local variable outside its function?
From this question I learned that you indeed should not export a local variable's address and use it outside the function in which it was declared.
However, it seems to me that K&R are breaking ...
0
votes
0answers
19 views
Pointer Position outside application snapped windows store apps
I am drawing on canvas using XAML C#. I want to get Pointer Position outside application when using snap or fill mode windows store apps.But Pointer will be Exited when outside application,so i can't ...
0
votes
1answer
62 views
C Access 2D char array via Pointer
I am trying to access a 2D array of chars. I have a pointer on right address but somehow dreferencing is not working.
char ary[5][8];
char temp[8];
int i;
char **a_ptr = &ary;
for(i=0; ...
0
votes
1answer
24 views
Creating a dynamic 2D pointer array of NSObjects in Objective C
I want to store a 2D array of NSObjects using C pointer arrays. I read another StackOverflow question which said that it's possible to do this as follows:
id myArray [10][10];
However I want to ...
0
votes
0answers
70 views
OO Structure: Pointer to derived classes C++
I'm creating a menu system for an openGL application I'm working on in C++. I'm shooting for a structure to something I've learned before (TObjects in Delphi). The structure I am shooting for is ...
2
votes
3answers
57 views
Pointers of generic type?
ok so i want to make a generic class that will change the value of a datatype. The reason i want to do this is so i can have undo and redo methods. I could write a class for each valuetype i need. ...
1
vote
1answer
43 views
Pointers - decreasing memory consumption
I have been writing a Minecraft replica for OpenGL practice (as many do I guess), however after writing the basic rendering API I noticed the real Minecraft uses a lot or memory - around 800MB! I can ...
0
votes
2answers
64 views
Dpointer inheritance
I am trying to learn how to inherit d-pointers from a bass class using the qt example from
http://qt-project.org/wiki/Dpointer#7969fa90723037d326b77fb11381044e
I have copied it verbatim from the web ...
2
votes
1answer
70 views
Want to create own class String
I'm making an own class String in C++.
I have a problem with this:
class String {
char* arr;
int len;
friend ostream& operator << (ostream& s, const String& c) {
...
0
votes
1answer
27 views
Passing a global variable in vba to a function
So i have this number of different two dimensional arrays that contain different physical attributes of a flow (mach number, temperature, etc). i need to plot these values in excel and calculate ...
2
votes
1answer
87 views
C Pointer to Pointer - Access string list
I am trying to access array of strings via pointers. It seems to be working fine when memory is alocated but somehow the values are lost if i try to iterate the pointer again. However, the pointed ...
-1
votes
3answers
86 views
What did compiler do in this piece of code(Base class pointer to derived class object)?
In this piece of code:
#include<iostream>
using namespace std;
class B
{
int b;
public:
~B(){ cout <<"B::~B()"<<endl; }//1
};
class D: public B
{
int i,d,e,f;
...
2
votes
2answers
187 views
c++ how to pick random items from a linked list
I'm experimenting with a game program. I'm trying to have an random number of items generate. The code will produce the same item multiple times. I can get away with setting up a series of switch ...
0
votes
2answers
53 views
What am i doing wrong here? Defining a class with a pointer to function typedef.
Here is my code:
// WorkDamnit.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
class Scheduler
{
public:
typedef void (*function_ptr) (void);
struct ...
0
votes
5answers
128 views
How do I make a function return a pointer to a new string in C?
I'm reading K&R and I'm almost through the chapter on pointers. I'm not entirely sure if I'm going about using them the right way. I decided to try implementing itoa(n) using pointers. Is there ...
0
votes
2answers
35 views
Red Black Tree Insert Issues C++
I'm currently working on an assignment where I am to implement a simple version of a Red Black Tree. I am currently working in Xcode and it's currently giving me an error GDB: Program received signal: ...
0
votes
3answers
88 views
C : Using char * const pointer
In the following program, p is declared as a pointer(which is constant BUT string is not).But still the program does not work and stops abruptly saying "untitled2.exe has stopped working".
...
5
votes
4answers
130 views
How to pass MyClass[][] for MyClass**?
Why can't I pass
Point src[1][4] = {
{
Point(border,border), Point(border,h-border), Point(w-border,h-border), Point(w-border,h-border)
}
};
as
...
-2
votes
0answers
54 views
Passing host function pointer to device function for CUDA computation
I want to have something like a plugin system. The thing is, that I have some functions implemented, that should be called in a device function. Atm I am using a switch to set the existing functions. ...
0
votes
2answers
44 views
Add offset to pointer with a macro (GCC)
There is a similar question here Portable and safe way to add byte offset to any pointer
but all answers are starting with ptr = (SomeType*)... which means that I have to
know the type of the ...
3
votes
8answers
124 views
In C, is it good form to use typedef for a pointer?
Consider the following C code:
typedef char * MYCHAR;
MYCHAR x;
My understanding is that the result would be that x is a pointer of type "char". However, if the declaration of x were to occur far ...
0
votes
3answers
61 views
C : Accessing contiguous array elements using a pointer returned by a function
In the following program, I get the output
1
0
0
2130567168
11
2686668
7
2686916
whereas according to me the output must be
1
2
3
4
5
6
7
8
because the array elements are stored in contiguous ...
0
votes
1answer
31 views
OpenCL void pointer arithmetic - strange behavior
I have wrote an OpenCL kernel that is using the opencl-opengl interoperability to read vertices and indices, but probably this is not even important because I am just doing simple pointer addition in ...
-3
votes
1answer
87 views
c++ code showing weird behaviour [closed]
Why is it showing the values of p as incremented twice even if according to the code it should be incremented later on
#include "iostream.h"
#include "conio.h"
using namespace std;
int main()
{
...
1
vote
1answer
73 views
Pointer syntax confusion (*ptr vs ptr)
I've been spending a couple days trying to understand pointers but the syntax still confuses me.
When you write say, int *ptr;, what is the difference between ptr and *ptr after this declaration?
In ...
0
votes
0answers
10 views
How to create a generic function for GetProcAddress
I wanted to replace some windows function calls to the corresponding dll ones. For example Sleep function would become:
typedef void (WINAPI * SleepFP)(DWORD);
hLoad = LoadLibrary("kernel32.dll");
...
0
votes
0answers
37 views
Segmentation fault - pointers and allocations in Bison with Flex
My main problem is I get really dizzy when it comes to pointers and memory allocation, so I dedicate this topic to my ignorance of the subject. If someone can take a look at the following code I'd be ...
1
vote
2answers
55 views
how *return implicitly return a reference
this is a const ptr to the object/instance which a member function receive implicitly, so how does return *this returns a reference ?
As of what I know , a pointer dereferencing to a variable means ...
0
votes
3answers
160 views
use of ** in pointer [closed]
main()
{
int a[]={5,4,3,2,1};
int *p[]={a,a+1,a+2,a+3,a+4 };
int **ptr=p;//what does it really means
cout<<a<<*a;/*prints the address of a, value of a[0] (i understand this line)*/
...
0
votes
1answer
52 views
How to create an array of pointers within a class with variable size?
I have the following code below which does work except that the line POINTEE* pointee[10]; is static and I want to make it dynamic whenever I create a class so it can be any size.
#include ...
0
votes
1answer
46 views
Can't assign string to pointer inside struct
Here is a piece of my code, I tried to make it simpler I am trying to assign a string to a pointer inside a struct that is inside an array, also I would like to initialize pointers to NULL so I can ...
0
votes
1answer
51 views
Understanding pointers
I know this may seem simple, but it's not making sense to me.
What I need to do:
I need to prompt for account balance A in one function, return to main, prompt for account balance B in another ...
-8
votes
1answer
55 views
Can you tell me How Pointers work in C? [closed]
I am new to programming and I am learning C programming language.Is there any video demonstrating the working of a pointer intutively?
1
vote
3answers
59 views
Memory leak by ctypes pointers used within python class
I try to wrap some C code via ctypes. Altough, my code (attached below) is functional, memory_profiler suggests it is suffering a memory leak somewhere. The basic C struct, I'm trying to wrap is ...
0
votes
1answer
59 views
C++ method supposed to accept a pointer to pointer, recieves an adress and still works
I am studying an example of how to create a simple Direct2D application and the author defines a class template and a method called SafeRelease as follows:
template<class Interface>
inline ...
-1
votes
1answer
37 views
How to pass array to function with pointers [closed]
I really don't know how to pass array to function with pointers. I am stuck with pointers in the following code which gives me error.
This is the code which gives me error with pointers..please help ...
-6
votes
2answers
91 views
What's wrong with my code? C++ [closed]
I have written these parts of code and I was up late, changed the code and now I get syntax errors. Can you see what I have done wrong? I can't find it.
First one:
class Bas {
public:
Bas( int ...





