0
votes
3answers
47 views

Says I am seg faulting when i place an item in the beginning of the array

Edit: Ok, so for some reason I thought the scanf line would read in the entire line as a string (multiple arguments). Brain must really be fried. Thank you all for your help. I am trying to place ...
-5
votes
1answer
79 views

delete, new [] and “pointer being freed was not allocated” [duplicate]

Search results indicate I'm getting "pointer being freed was not allocated" either because I use delete on objects created by new [] or I forgot to create a copy constructor or because of memory ...
3
votes
1answer
27 views

Pointers to an 'array' in Red/System

How do I make a pointer to the first element in an array in Red/System? Assigning an address to a pointer is no problem: my-integer: 1 ptr: declare pointer! [integer!] ptr: :my-integer The array ...
0
votes
3answers
47 views

possible way to implement array of pointers to string

I had a code which works fine with the integers #include<stdio.h> int main() { int i; int* p[5]; printf("Enter the elements to be shorted"); for(i=0;i<=4;i++) { ...
0
votes
3answers
42 views

read() buffer has invalid data (pointer issue?)

I have the problem that the data array in the following function has some crappy value (looks to me like some memory location): int GPIO::GetValue() { char data[1]; if (read(_valuefd, data, ...
0
votes
3answers
46 views

Assignment makes pointer from int w/out a cast

I am compiling some code for a program that memoizes fibonacci numbers. The program works perfectly however when I compile in linux environment I get this warning before compiling. line 61: warning: ...
1
vote
3answers
79 views

Pointers as arguments to a function that calls scanf

I am having some trouble with pointers. The gist of it is, I am trying to define pointers in one function and call that function in my main to use those pointers. The exact instructions for my ...
4
votes
4answers
93 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 ...
-1
votes
6answers
91 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.
-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 ...
0
votes
1answer
27 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 ...
-1
votes
3answers
87 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; ...
0
votes
3answers
64 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
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 ...
-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 ...
1
vote
1answer
47 views

How to initialize a pointer to an array as a member variable

I am trying to declare a member variable that is an array of unknown size, that contains pointers to objects (objects that don't have default constructors). Additionally, I want the array to be ...
0
votes
3answers
72 views

How to copy a string to an element of array of pointers?

I have an array of pointers to string classes and I need to copy a line from a file into each pointer but I'm not sure how to do that. void Document::loadFile(string iFileExt){ ioFile = new ...
-5
votes
1answer
68 views

Questions about pointers and arrays in C [closed]

I have a question about this simple program in C to practice with pointers and arrays. Code: #include <stdio.h> fun(int *p, int *v) { *p++; *(v+2) = p[3]; *v++ = p[0]; v[0] = ...
-2
votes
2answers
65 views

cannot convert parameter 1 from 'char [20][20]' to 'char ** '?

My Code is below: #include <stdio.h> void print_pointer(char **str); void print_array(char *str[20]); void print_array2(char str[20][20]); void print_array3(char str[][20]); int main(int ...
1
vote
2answers
48 views

iterate through array of strings with zero at the end

I have a char* array that looks like this: {"12", "34", "", 0} I'm passing it to a function, so it decays to a pointer. So I have a function that takes in a char**, and within the function I want ...
1
vote
3answers
38 views

Expand an Array of structs to a larger size dynamically

I have a dilemma where I have a struct which contains an array of structs... typedef struct Container{ struct Inner *F; int length; } Memo; typedef struct Inner{ int *digits; int ...
0
votes
2answers
76 views

Passing an array to a function as array vs as a pointer

I am a newbie to C and I am looking the ways to pass an array to a function and access the elements. I find that there are 3 ways to do that. pass in an array, and the function specific the ...
1
vote
3answers
42 views

Position 2D array bug as parameter causes memory dumps

This is my program in C++, which accepts an 2D array a[m][n]. If an element a[i][j] is zero, then set all the ith row and jth column elements to zero. This is code sample: #include <iostream> ...
0
votes
3answers
40 views

Incorrect output in an array inside a struct

I have a struct with an int array inside that I'm passing to a function for the array to be initialized array struct like so.. typedef struct Container{ struct intArray *P; int length; } ...
1
vote
3answers
112 views

Can a pointer be used to traverse an array of chars?

Can I use char* bufferpntr to traverse an array that is pointed to by char* buffer? example: delete [] bufferpntr; bufferpntr = nullptr; buffer = nullptr; buffer = new char [MAX]; bufferpntr = ...
5
votes
1answer
88 views

c++ ampersand operator with char arrays

I was just playing with pointers and arrays when I got confused with this piece of code that I was testing with. #include <iostream> using namespace std; int main(void) { char a[] = ...
1
vote
1answer
53 views

Pointer to statically defined two-dimensional array

Code (compiled using gcc -std=c99) ... #include <stdio.h> #include <stdlib.h> typedef int mytype[8][8]; int main(void) { mytype CB; for (int r=0; r<8; r++) { for (int ...
3
votes
1answer
72 views

Can anybody help me with my coding issue regarding a dynamic array of structures in C?

#include <iostream> #include <string> using namespace std; struct car { string make; int year; }; int main() { int n; cin >> n; car * pt = new car[n]; for ...
3
votes
3answers
59 views

String as pointer vs array [duplicate]

I was wondering what the differences are between the following definitions: // file.cpp: namespace n { static char const * const str1 = "hello"; static char const str2[] = "hello"; } Behaviors I ...
1
vote
1answer
54 views

Allocating an Array in Memory Manager

I want to successfully allocate an Array in my Memory Manager. I am having a hard time getting the data setup successfully in my Heap. I don't know how to instantiate the elements of the array, and ...
2
votes
3answers
113 views

Correct way to allocate and free arrays of pointers to arrays

I want to create an array of pointers to arrays of 3 floats. What is the correct way to do this? float *array1[SIZE]; // I think it is automatically allocated // OR float **array1 = calloc(SIZE, ...
-4
votes
1answer
61 views

Null Pointer - Timer + Array of objects [closed]

I have discovered were the error was, was declaring the array as laneCar[] in one part of my code and laneCars[] elsewhere which was causing null pointer errors.
0
votes
2answers
95 views

how to get the value from the array in C?

I have a two dimensional array like this: void getC(int **p) { *p = &c[0][0]; } int c[10][10]; int *a; getC(a); a[0][0]; it says error: no match for 'operator[]' in `a[0][0];` what is the ...
10
votes
3answers
146 views

Typecasting an array to pointer?

Is is possible to typedef an array? I have a set of vector function which all accept a pointer to a float which is an array of three floats. I can typedef float* vec3_t, however it will not let me ...
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? ...
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]= ...
-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* ...
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"; ...
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) << ...
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 ...
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 = ...
3
votes
2answers
80 views

difference between int *a[3] and int (*a)[3]? [duplicate]

I want to know what is a difference between : int *a[3]; And int (*a)[3]; Thanks a lot , good luck .
-4
votes
0answers
34 views

Pointer to arrays of characters [closed]

I tried to create pointer to arrays of characters but there is an error. I used next line for allocation: char* array[3]; The only idea that i have is that the arrays are allocated statically and I ...
-2
votes
2answers
89 views

How to create and return a pointer to an array of objects in C++?

I am working on a game in C++ using SDL, and I would like to have a master list of entities to use throughout the game. So that I don't want to have to pass around tons of copies of this array, I ...
-3
votes
3answers
75 views

Pointers with Character array in C [closed]

What would be the output of the following program? main( ) { char s[ ] = "Get organised! learn C!!" ; printf ( "\n%s", &s[2] ) ; printf ( "\n%s", s ) ; printf ( "\n%s", &s ) ; ...
0
votes
0answers
60 views

Best way to access a C++ array [closed]

What do you think is the best way to access a C++ array, just use the neater bracket notation and rely on your compiler to optimize the code or use more verbose pointer notation to attempt to optimize ...

1 2 3 4 5 34