A pointer is a data type that "points to" another value stored in memory using its address.
-10
votes
0answers
53 views
confuse in pointer c++ (using turbo c++) [closed]
I'm making a program about "remembering one thing", I make for example :
House 1, address : 0x08fff00 bla bla
House 2, address : 0x08fff02 bla bla
There is a command Please send post to House in ...
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 ...
2
votes
4answers
58 views
Assignment makes pointer from integer without a cast and other questions
I just started learning C a few days ago and I'm having a bit of difficulties with pointers. I'm trying to convert a string to an array of integers. The little snipet below seems to be working but I'm ...
3
votes
2answers
108 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" ...
0
votes
1answer
35 views
Defining a function pointer of an unspecified namespace
I'm making a simple developer console for a game I'm working on with a friend of mine. I'm working on binding functions to the console, so I have an std::map containing a string to hold the name ...
-1
votes
1answer
38 views
How can I use fread() to load the contents of a file into the second element of an array of strings in C?
I am having some trouble understanding how pointers work in a particular situation. The details of my confusion are outlined below.
I have created a character array of 8-byte strings named buffer and ...
0
votes
4answers
49 views
Pointers assigned inside an invoked function valid?
I want to understand whether in this piece of code, pointers stored in the vector by func() are valid when accessed from main_func(), and if so why?
void func(vector<double*>& avector) {
...
1
vote
0answers
66 views
Assigning string to char pointer in 64bit C++ error
I am stucked in a problem assigning a string to a character pointer. It seemed that the character pointer is taking only first 256 character of the string. My working in 64bit platform. Also the same ...
3
votes
5answers
265 views
Is it possible to swap C functions?
Looking to see if anyone knows if its possible to swap C functions...?
void swap2(int(*a)(int), int(*b)(int)) {
int(*temp)(int) = a;
*a = *b;
*b = temp;
// Gives 'Non-object type 'int ...
4
votes
2answers
89 views
How to make a pointer increment by 1 byte, not 1 unit
I have a structure tcp_option_t, which is N bytes. If I have a pointer tcp_option_t* opt, and I want it to be incremented by 1, I can't use opt++ or ++opt as this will increment by ...
2
votes
4answers
76 views
Is there one rule or priority to choose value/pointer/reference?
how to choose value or pointer or reference?
when I code in c++, I don't have a clean idea when to choose each one?
Is there one priority or rule when choosing?
0
votes
3answers
54 views
how to catch \n\r in a filestream and line locations, C#
i have a .CSV file that holds data thats looks like this:
Sana Paden,1098,64228,46285,2/15/2011
Ardelle Mahr,1242,85663,33218,3/25/2011
Joel Fountain,1335,10951,50866,5/2/2011
Ashely ...
-2
votes
0answers
41 views
Can One Receive and Return Pointers with a C# Console Application [closed]
Is it possible to, and if so how can one, receive pointers as arguments in a C# Console Application, and return a pointer to the calling application?
EDIT
I'll site an example.
In a C++ console ...
0
votes
1answer
56 views
Random results with pointers to structures and arrays of structures in C
I am trying to write a program in C to add two arrays of complex numbers.
I am using the following code :
#include <stdlib.h>
#include <stdio.h>
typedef struct cplx
{
int re;
...
8
votes
2answers
208 views
Variable declaration and their memory addresses in C
I created a simple program:
#include <stdio.h>
int main()
{
int s1;
int s2;
int s3;
int *p1, *p2, *p3;
p1 = &s1;
p2 = &s2;
p3 = &s3;
...
1
vote
2answers
42 views
Freeing a reference vs freeing a pointer? Can we tell whether an argument is a reference or a pointer?
I have a structure, like
typedef struct {
void* data;
int index;
} Node;
and I have some lines like
Node* node = (Node*)malloc(sizeof(Node));
enqueue(&list, node);
Then I have a ...
0
votes
2answers
140 views
C++ Why do values of the same variable differ?
I have the classes Sphere and Triangle which are both subclasses of Intersectable. Intersectable has a public member variable colour. Consider the following code fragment:
float t_min = 100000.0f;
...
1
vote
5answers
103 views
Why is it reccomended to set a pointer to null after deleting it? [duplicate]
int* ptr = new int();
delete ptr;
ptr = 0; // or null
My book is telling me that it is good practice to set a pointer to null or 0 after deleting what it points to. I'm not understanding why. Could ...
0
votes
1answer
35 views
illegal implicit conversion of unsigned pointers
why is it that this compiles:
char * tst1=0;
short * tst2=0;
tst1=tst2;
tst2=tst1;
but this does not:
unsigned char * tst1=0;
unsigned short * tst2=0;
tst1=tst2;
tst2=tst1;
This is just an ...
3
votes
4answers
85 views
if a pointer is freed, how about the content it points to? will it be influenced or not?
as in the following code:
typedef struct list {
...
...
struct Data *data;
} List;
List* list = (List*)malloc(sizeof(List))
struct Data* data = (struct Data*) malloc(sizeof(struct Data));
...
2
votes
5answers
82 views
Getting value using indirection operator
If value are stored in an address, then what does this declaration do
int a = 10;
It store the value in a or in address of &a. And if it store the value in address of a, then why we can't using ...
0
votes
2answers
59 views
Read & Write file into array
I am trying to write to a text file and read from text file to get the average score of items in an array. Here is my code :
#include <iostream>
#include <fstream>
using namespace std;
...
0
votes
6answers
110 views
In this example for the C++ Documentation Tutorial, why are the pointers declared twice?
I'm working through the C++ Documentation Tutorial, and I'm having some trouble understanding this example of using pointers in a constructor:
// example on constructors and destructors
#include ...
0
votes
3answers
76 views
C++ Returning values from dynamic array (image class)
I have a problem with the following code (compiler not complaining but I get an error message at runtime - R6010 abort). Basically I have created an Image class which reads data from an image and ...
1
vote
3answers
75 views
c++ Allocating memory for a class
I have this class :
class myClass{
public:
myClass(string label);
~myClass();
string myget();
void myset(string label);
void myadd(class2 * edge);
...
-4
votes
5answers
94 views
Dereferencing pointers
I Just came along a question and when i compiled and run it in CodeBlockes I got an error and i could not run it.
Here is the question.
What will be the output of the program ?
...
0
votes
4answers
64 views
Why am I getting segmentation fault for malloc() while using pointer to pointer?
I don't understand why this works:
void main() {
int * b;
b = (int *)malloc(sizeof(int));
*b = 1;
printf("*b = %d\n", *b);
}
while this does not (gets segmentation fault for the ...
-3
votes
1answer
65 views
How to create a dynamically allocated C++ Object and its pointer?
This might be a newbie question, but I am asking myself it anyway.
If I have a Object class defined:
Object *p = new Object();
Does this code create a pointer p, and at location p, place a Object ...
3
votes
3answers
133 views
Is casting to pointers to pointers to void always safe?
#include <stdio.h>
void swap(void *v[], int i, int j)
{
void *tmp;
tmp = v[i];
v[i] = v[j];
v[j] = tmp;
}
int main(void)
{
char *s[] = {"one", "two"};
printf("%s, ...
0
votes
2answers
77 views
gcc optimization flag break code
This code works fine when no optimization flag are set:
#include <cstdio>
int main(){
float *ptr = ({float var[10] = {1,2,3,4,5,6,7,8,9,10}; var;});
float *ptr1 = ({float var[10]; for(int ...
2
votes
1answer
106 views
Why does sizeof(argv)/sizeof(argv[0]) give me the size of an array in C++?
If I have an array as an argument in main
int main(int argc, char* argv[])
why will
sizeof(argv)/sizeof(argv[0])
always reliably give me the length of the array?
1
vote
2answers
75 views
How to avoid assigning to the heap
I'm trying to improve performance by not using malloc in a loop. As the size of the array is almost always the same size I'm trying to use a stack variable and only replacing it if the array is too ...
-2
votes
3answers
66 views
Pointer to struct in C# to create a linked list
C# does not like pointers, but I need to use them now to create a linked list, like we would do in C. The struct is simple:
public unsafe struct Livro
{
public string name;
...
2
votes
3answers
64 views
How to write to memory address?
New to pointers and unsafe world in C#. I was going through getting memory address of variables via pointers, move things around a bit here and there etc; basically learning.
static unsafe void M()
...
0
votes
2answers
61 views
C Passing Pointer to Array to Function Issue
Googled around and can't find out what's going wrong here, the pointer gets passed correctly but it's not working.
The program is supposed to find the length of the character array/string.
What's ...
2
votes
3answers
43 views
Array of struct pointers - overrides struct
I'm learning C and encountered a problem with structs.
Let's assume I have the following struct:
typedef struct {
int x;
} Structure;
int main (void) {
Structure *structs[2];
for(int i = 0; i ...
1
vote
2answers
63 views
malloc and pointer in a struct
I have the following C code:
typedef struct DListNode_ {
void *data;
struct DListNode_ *prev;
struct DListNode_ *next;
} DListNode;
typedef struct DList_ {
int size;
...
0
votes
4answers
73 views
Segfault — but the pointer isn't NULL [closed]
I am doing something like the following in C:
void *initialize()
{
my_type *ret = malloc(sizeof(my_type));
return (void*)ret;
}
void test()
{
my_type* ret = (mytype*)initialize();
...
0
votes
2answers
55 views
How to know pointer to structure by it's array pointer?
I have structure:
public struct MyStruct
{
public int a;
public int b;
public byte[] mass;
}
I need:
Pass poiner to "mass" array to C++ unmanaged function.
And after it done all work it ...
0
votes
2answers
57 views
Why is strcpy(strerror(errno),“Hello”) not copying “Hello”,but {ptr=strerror(errno);strcpy(ptr,“Hello”);} does?
Please explain what's going on in the following program.
I checked out the addresses returned by strerror(errno) at the beginning and end of the program and it confirms that it returns the same ...
0
votes
3answers
59 views
What does the prototype “const int* foo(int)” mean,especially in contrast to “int* foo(int)”?I understand the second only [duplicate]
I know that int* foo(int) prototype means that foo is a function that takes an integer argument and returns a pointer to an integer.But what does the following mean?
const int* foo(int);
I tried ...
1
vote
0answers
34 views
Strange wording in the standard, concerning comparrison of pointers
ยง6.5.8\6 (converning >, <, <=, >=)
If the expression P points to an element of an array object and the
expression Q points to the last element of the same array object, the
pointer ...
0
votes
3answers
78 views
why cant i manage ~382MB of memory when i have it available?
OBJECTIVE: manage a unsigned long tomBOLA[5][10000000];
$top gives me:
top - 14:05:35 up 4:06, 4 users, load average: 0.46, 0.48, 0.44
Tasks: 182 total, 1 running, 180 sleeping, 1 stopped, ...
0
votes
2answers
50 views
What exactly does “const int *ptr=&i” mean?Why is it accepting addresses of non-constants?
Your answers are very much sought to clear this major lacuna in my understanding about const that I realized today.
In my program I have used the statement const int *ptr=&i; but haven't used any ...
3
votes
4answers
95 views
Swap items of void* pointer array without memcpy in C
I am writing some school project, and I need to swap two items of void* pointer array. I can do this with something like following code:
void swap(void *base, int len, int width)
{
void *p = ...
0
votes
2answers
66 views
Why are we allowed to change values of “const” qualified variables?Why pointers are allowed for this,but not assignment?
Consider the following 2 programs prog1 and prog2.Here if I try to change the value of the const qualified variable i using a pointer ptr,I get the warning( not error) "initialization discards ...
5
votes
2answers
107 views
How to deallocate an element in a vector of pointers?
So I have a vector of pointers like so:
vector<Example*> ve;
I fill this vector with pointers like this
Example* e = new Example();
ve.push_back(e)
But when I want to remove them, how do I ...
-1
votes
2answers
57 views
Pointer loses value (simplistic code)
Here is the code:
#include "DynIntStack.h"
DynIntStack::DynIntStack(void)
{
}
DynIntStack::~DynIntStack(void)
{
}
bool DynIntStack::IsEmpty()
{
return head;
}
void DynIntStack::Push(int v)
{
...
-2
votes
1answer
45 views
any idea to convert this read integer value to ascii and also is this the right way to divide the memory into blocks
#include <stdio.h>
#include <stdlib.h>
#define actualTV 250
#define stopparity ON
#define baudrate 11250
#define startparity OFF
#define msize 4096
int a[msize];
void read()
{
int i;
...
1
vote
1answer
67 views
function array with functions from different objects
I don't have much experience using array of functions in C++. I need to use an array of functions where the array contains functions from different objects.
Here is some dummy code to illustrate what ...





