A pointer is a data type that "points to" another value stored in memory using its address.
1
vote
3answers
121 views
A Faster Way To Reverse A String? [duplicate]
Below is the fastest code I could create for reversing a String
public static void ReverseFast(string x)
{
string text = x;
StringBuilder reverse = new StringBuilder();
for (int i = ...
1
vote
5answers
79 views
Change the value of elements in the array by pointers - vector<int> C++ [duplicate]
I use Visual Studio 2012. I've created my own function which works like sprintf(&a).
And i need to resolve problem: how do I swap two specific pointer elements?
Here is my code:
#include ...
-1
votes
0answers
43 views
c++ Suggestions to making a simple board game a bit more sophisticated [closed]
I'm making the transition from java and python to c++ and I decided to rewrite a java project I did a year ago in c++. The game is a board game called Lotus, it's pretty much like Parcheesi with a ...
1
vote
1answer
31 views
Unhandled exception at 0x775615de in ValedasFloresRetail.exe: 0xC0000005: Access violation writing location 0x00000000
Unhandled exception at 0x775615de in ValedasFloresRetail.exe: 0xC0000005: Access violation writing location 0x00000000.
I'm getting this error and i've no clue on whats happening
pProduto ...
3
votes
4answers
137 views
Diffrence between new operator in C++ and new operator in java
As far as I know, the new operator does the following things: (please correct me if I am wrong.)
Allocates memory, and then returns the reference of the first block of the
allocated memory. (The ...
2
votes
2answers
114 views
Pointers to pointers: Difference between *a = b->c and a = &b->c
Looking back at the two star programming article I can't help but fail to see the significance of the difference between the following two lines:
*curr = entry->next;
curr = &entry->next;
...
1
vote
1answer
98 views
Is a C# list like a C++ list?
Im just wondering if a C# List is like a C++ List.
Removing an element in the middle of a big list in C++ is fast because i know the elements are just pointing to the next.
So when removing a ...
1
vote
2answers
94 views
What does the -> (point to member) operator do?
I have a linked list program,in which I see a lot of -> operators, but I don't know what they do.I searched about them here and there but all I found was that that is a point to member operator and ...
0
votes
4answers
42 views
Segfault when dereferencing iterator for vector of pointers
I have a vector of object pointers
std::vector<Element*> elements;
When iterating through the vector, I would like to double dereference the iterator in order to call the object's ...
-4
votes
3answers
108 views
Less memory methods
If i have the following methods:
void addfive(int num)
{
num = num + 5;
}
and when i use it in the main routine like this:
int a = 15;
addfive(a);
What will happen is that 5 will be added to ...
3
votes
2answers
47 views
Guaranteed valid string as function parameter
I was wondering whether there is a way in C++ that a "string" (in whatever representation) that get's passed into a function can be assumed to be a valid string by that function.
I'm very new to ...
-1
votes
1answer
30 views
How to free one of the index of an array pointer?
Suppose I have pointer array;
int *x;
when I free one of the index of x, other indices are unavailable also.
free(x[4]);
int k = x[3]; // gives segmentation error. If do not free no error.
Is ...
0
votes
2answers
33 views
Pointer to vector of structs error
I'm making a .lib file for a mobile robot.
Currently I'm writing a function for scanning Bluetooth devices.
The function is:
struct Device
{
string DeviceName;
BTH_ADDR DeviceAddress;
};
...
0
votes
1answer
43 views
Linked list Node Insert to Front - all content value changing each time I add a value
I am making a singly linked list whose node has a string and a pointer to next node. I have written a function to insert to front of the linked list. The problem is that whenever I insert a new value ...
2
votes
1answer
70 views
Red Black Tree in Linux
I am working on a Linux kernel project that involves using the rb_tree defined in rbtree.h. Here is the structure that I am storing in the tree:
struct source_store{
sector_t source;
sector_t ...
0
votes
4answers
41 views
integer pointer is not working while assigning two dimensional array via another pointer?
I was trying to copy the contents of one 2d array to another using pointers. I wrote this simple test program but it shows me segmentation fault but i still cannot find a rock solid reason why?
...
-1
votes
1answer
20 views
Xcode 4.6 IPhone/IPad Copy Field, using setText “Incompatible pointer types”
I am trying making a simple iphone app that copies text from one field to another when you press a button (text1 values into text2), but I am getting my some warnings "Attributes on method ...
0
votes
1answer
59 views
Pointer to element in an 2D array slows down code
I have this piece of code which accesses some information about a point on a 'x' and 'y' axis. This information is later used to draw some points onto the screen.
This is how the code works:
...
0
votes
3answers
61 views
warning: format '%lu' expects argument of type 'long unsigned int', but argument 4 has type 'long unsigned int *' [-Wformat]
I get warning: format '%lu' expects argument of type 'long unsigned int', but argument 4 has type 'long unsigned int *' [-Wformat] for the code below
unsigned long buf[254];
char systemlogmsg[500]= ...
-2
votes
3answers
80 views
Why C program crashes? [duplicate]
Please, someone explain why the following C program crashes:
void changeChar(char *string);
int main(int argc, char *argv[])
{
char *test = "word";
changeChar(test);
return 0;
}
void ...
-4
votes
2answers
40 views
Combining overloaded operators with 'new' object
i'd like to ask something rather difficult for me; I have to make a calendar-type program, but with an overloaded '+=' operator.
So it goes like this:
template<typename T1,typename T2,typename ...
4
votes
1answer
76 views
Pointer handling with RubyMotion
I'm trying to port the following method to RubyMotion
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
NSInteger dataLength = [data length];
const ...
2
votes
1answer
43 views
Doubly linked list: Incompatible pointer types
at the moment I'm working on an implementation of a balanced B-Tree in C. I decided to use doubly linked lists but I have run into some problems. At the moment I get warnings for line 94, 95 and 96 ...
0
votes
3answers
121 views
But the sizeof() operator doesn't work on pointer but works on the array name. Why is it so? [duplicate]
Hi i was doing this exercise and wanted to get the size of array after i pass the pointer to the array to the function:
But the sizeof() operator doesn't work on pointer but works on the array name. ...
0
votes
4answers
79 views
Address of members of a struct via NULL pointer
Why the following expression is not a (null pointer) runtime error?
typedef struct{
int a,b,c;
} st;
st obj={10,12,15};
st *ptr1=&obj;
st *ptr2=NULL;
printf("%d",*(int ...
-5
votes
2answers
48 views
Invalid conversion what to do?
The code shows an invalid conversion from int to *int how do i fix the problem ... the full detail of error is given below
Error:
WAP to find the maximum in a dynamic array
In function 'int* ...
0
votes
1answer
26 views
How to flush string which is in structure?
My structure:
struct Data{
char buffer[MAX_BUFF];
int bufferPos;
};
How I execute function searchFile:
searchFile(outFile, logFile, category, keyword, srcName, &dat);
In function ...
1
vote
3answers
53 views
pointer to value in array?
So I need to have a pointer to a value in a const char array. But I can't quite get it to work without errors. Here's the code.
int main (void)
{
const char *alp = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
...
0
votes
3answers
39 views
C++ Safe returning a pointer to an iterater after map insert?
So I have some C++ classes that use a map and key class for a sort of data structure. In my insert method I use the typical map.insert. I want this function to return a pointer so I can modify some ...
0
votes
2answers
50 views
Populating linked list function not storing data in structure and crashing on print
So I'm working on a little C program which is a little address book that automatically allocates memory when you add a new contact in it.
I'm using two typedef structures, the first one stores the ...
1
vote
2answers
47 views
Can I create a function which accepts a pointer to an array which may contain a different type of numbers on each call?
I need to write a function which writes an array of "n" elements to a binary output file. I would like to avoid having to write a separate function for each type of data I may wish to write (int, ...
1
vote
3answers
51 views
Aeroflex gaisler (RTEMS with leon2 processor) can't send character over UART interface
#include <fcntl.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <ioctl.h>
#include ...
-2
votes
3answers
88 views
Value of pointer when address of the pointer not initialized
#include <iostream>
int main()
{
int a;
int *p = &a;
std::cout << *p << "\n";
}
In this program, when I leave a uninitialized and try getting the output
of the ...
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
27 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
44 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
72 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
76 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 ...




