7
votes
5answers
182 views

Why printf(“%s”,(char[]){'H','i','\0'}) works as printf(“%s”,“Hi”), but printf(“%s”,(char*){'H','i','\0'}); fails?

I really need help on this.It has shaken my very foundation in C.Long and detailed answers will be very much appreciated.I have divided my question into two parts. A: Why does ...
0
votes
1answer
26 views

Property doesn't match type of instance variable?

I took some sample code from Apple's SimpleFTPSample Which looks like this: @interface PutController () <UITextFieldDelegate, NSStreamDelegate> ... @property (nonatomic, assign, readonly) ...
1
vote
3answers
60 views

Are pointers used when copying a class with huge array member?

I have a class storing an multidimensional array as member. struct Structure { Structure() { memset(Data, 0, sizeof Data); } int Number; int Data[32][32][32]; } When I ...
-1
votes
1answer
64 views

Padding arrays in C++ without translating indices

Here is what I have: int t[MX]; Now, I'd like to rewrite that code so as to effectively add a single element to the beginning of that array, without having to translate all of the indexing by 1 in ...
-2
votes
1answer
48 views

about sizeof(char *) and sizeof(char[]) [duplicate]

char *str1 = "pupupupu"; char str2[] = "pupupupu"; printf("%s\t%d\n", str1, (int)sizeof(str1)); printf("%s\t%d\n", str2, (int)sizeof(str2)); Output: pupupupu 8 pupupupu 9 My question: Why ...
1
vote
3answers
49 views

Changing the value of a character in an array of strings in C

I am trying to figure out how to change the letter "j" to a "Y" using a pointer in the program below: #include <stdio.h> #include <string.h> int main() { char *buffer[] = ...
0
votes
1answer
34 views

cycle accurate model pointer and array

I am currently developing a cycle accurate model for RISC processor using pipelining. I wrote the code for pipe-lining method using some code samples from my lecturer, but it doesn't work. I am a bit ...
-1
votes
1answer
35 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
1answer
52 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; ...
0
votes
2answers
54 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
3answers
71 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 ...
2
votes
1answer
104 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
42 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 ...
-2
votes
1answer
43 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
43 views

Can I convert an array in such a way to Pointer and return a pointer to a constant?

Can I convert an array in such a way to Pointer and return a pointer to a constant ? It is right in terms of memory allocation ? const int* convert_vector_to_pointer(std::vector<std::pair<int, ...
0
votes
2answers
51 views

Could this cause a memory leak, returning array from function?

I have the following code which works fine except I'm not sure if I need to delete the returned_array pointer in the int main() or if its automatically deleted. I will guess its not automatically ...
0
votes
3answers
136 views

Heap and Pointer in C++

I got question on pointer. Here is my question : Write a function int* read_data(int& size) that reads data from cin until the user terminates input by entering Q. The function should set the ...
1
vote
1answer
18 views

When can you use a character array's name to make a valid L-value?

Given a pointer and an array, setting one equal to another fails in one case, and works in another. char *c_ptr = "I'm a char pointer"; char c_arry[] = "I'm a char array"; c_ptr = c_arry; //This ...
0
votes
2answers
80 views

Unable to find the runtime error [closed]

I have taken an application from my teammate in order to replace some part of it with some new features. The application consists of several blocks. Basically, one block allows user to draw some area ...
0
votes
4answers
57 views

Java Null Pointer Exceptions

I am getting a null pointer exception that I cannot think how to fix. The array in question is a class array, and should be accessible to the method that is utilizing it. Here is the main method: ...
0
votes
4answers
62 views

Array of Objects

In the question below I not getting the bold line. Does that line mean create an array objects of class compartment? Because as per my knowledge Java doesn't have concept of pointers. Create an ...
0
votes
3answers
48 views

No matching function for call error

I don't understand what's wrong here. I've cut what i believe to be the non relevant part of the code to make it easier to read. The debugger shows the error below at the line "check(grid, n, q, ...
0
votes
3answers
82 views

C Programming Modify Quicksort

Homework question out of the textbook "Modify the qsort.c program of section 9.6 so that low, high and middle are pointers to array elements rather than integers. The split function will need to ...
1
vote
3answers
72 views

array flipping with pointers

int* m = new int [d1*d2]; ptr1 = m; ptr2 = m + (d2*(d1-1)); if ( *ptr1 != *ptr2){ temp = ptr2; ptr2 = ptr1; ptr1 = temp; } ptr1 +=d2; ptr2 -= d2; ...
-7
votes
0answers
66 views

Finding largest integers recursively with pointer arithmatic [closed]

largest = new int(0); for ( i = 0; i < d2*d1; i +=d2) { if ( *(m+i) > *largest){largest = m+i;index = i;} } largest2 = largest+d2; if ( *largest2 == *(largest + ...
2
votes
3answers
43 views

typedef'd array of pointers - copying values

Good day, I have a few simple typedefs like so: typedef int dataType; typedef dataType* arrayOfNPointers[N]; So, dataType represents int, and the type arrayOfNPointers represents an array of N ...
0
votes
2answers
45 views

expected identifier or '(' error when assigning variables to members of a struct array

Here is the header file im using: typedef struct room room; struct room { char name[21]; int num_doughnuts; int num_milkshakes; room* portal[4]; }; and my code: struct room* ...
2
votes
2answers
106 views

Is Big-O of the C++ statement 'delete [] Q;' O(1) or O(n)?

Title is self-explanatory. Very easy question. I think it's O(n) but wanted to verify before my final tomorrow.
1
vote
1answer
40 views

Should I unset my PHP array values?

Does garbage collection on array values work like the garbage collection on normal variables? I.e. will the complete $array be kept in memory until each array key is unset or the whole array no ...
0
votes
1answer
43 views

Traversing a column recursively with 2 pointers

int* m = new int [d1*d2]; (row*column) for ( j = 0; j < d2; j++ ){ largest = new int(0); for ( i = j; i < d1*d2; i +=d2){ if ( *(m+i) > *largest){largest = ...
2
votes
3answers
91 views

C array and pointer to array

I have a simple question.. I have a C program.. I have a array of long and I would like to to pass a pointer to this array into two function. Is correct to pass the array in this way? long[] myArray ...
0
votes
2answers
92 views

Recursive largestS integers

int* m = new int [d1*d2]; This is my array. for ( j = 0; j < d2; j++ ) { for ( i = j; i < d1*d2; i +=d2){ cout << *(m+i); } cout << endl; } And by using ...
2
votes
2answers
75 views

Traversing a multi array with pointers

for ( j = 0; j < d1; j++ ){ m += j; for ( i = 0; i < d1*d2; i +=d2){ cout << *(m+i); } cout << endl; } d1,d2 are array dimensions and int* m = ...
3
votes
1answer
69 views

Why does “char *ptr={'R','E','D','\0'};” gives too many warnings while “char *ptr=”RED“;” works fine?

Consider the following code: #include<stdio.h> int main() { char *ptr={'R','E','D','\0'}; //char *ptr="RED"; } It shows the following list of warnings: warning: initialization makes ...
0
votes
2answers
95 views

C pointer and array

I came through an interesting observation... The code goes like this: main() { int *num[3] = {{1,2,3},{4,5,6},{7,8,9}}; printf("num = %u &num=%u *num = %d ...
0
votes
0answers
74 views

How do you detect the element of highest occurence in a pointer array? [duplicate]

I'm looking for an elegant way of determining which element has the highest occurrence (mode) in a C++ ptr array. For example, in ['pear', 'apple', 'orange', 'apple'] the 'apple' element is the ...
0
votes
1answer
99 views

C++ Looking for the Element with the highest occurence in an array

I'm looking for an elegant way of determining which element has the highest occurrence (mode) in a C++ ptr array. For example, in {"pear", "apple", "orange", "apple"} the "apple" element is the ...
0
votes
1answer
47 views

Array name as pointer and array name with & operator [duplicate]

Whats the difference between last 2 statements: int a[20]; int *b=a; int *c=&a; I think both are same, but in a recent interview the interviewer was keen to know the difference which I didn't ...
-6
votes
0answers
28 views

Comparison of Class that uses an Array as a data member and Class that uses Dynamic Array in private section in C++ [closed]

Compare a class that uses an Array as a data member to a class that uses a dynamic array (pointer) in the private section. Also, Why would we need to write a destructor, overloaded assignment ...
-9
votes
1answer
75 views

Array of Pointers to Strings in C [closed]

Write a prog to reverse the strings stored in the following array of pointers to strings: char *array_str_ptr={ "Brinda Roy" "Rakesh Baid" ...
1
vote
2answers
99 views

How to pass “pointer to a pointer” to a function that expects “pointer to array”

Consider this piece of code: #define MAX 4 ............ ............ int** ptr = (int**)malloc(sizeof(int*)*MAX); *ptr = (int*)malloc(sizeof(int)*MAX); // Assigned values to the pointer successfully ...
1
vote
2answers
61 views

C++ difference in sending an array as a value/pointer

So I somehow got this to work, I am really interested as to why my first attempt failed. I have informal experience with C, and am now trying to learn C++. I thought I would experiment with a few ...
0
votes
2answers
49 views

strlen of a char array is greater than its size. How to avoid?

I defined an array: char arr[1480]; Now, from a file, I read exactly 1480 chars and put into arr (by doing arr[i]=c). I know 1480 chars because I use a while loop to read one char ar a time ...
0
votes
3answers
26 views

A member pointer of a class gets garbaged when data is copied to another member of class

Here is the problem I have now: class Header{ //something here }; class Packet{ public: Packet(Header* _header){ header = _header; }; char buf[1000]; ...
0
votes
1answer
57 views

Given char *p = “string”, why does modification result in undefined behavior? [duplicate]

char *p = "string literal"; p[0] = 'S'; char a[] = "string literal"; a[0] = 'S'; What is the main difference between these two? What really happens in the memory when these two are defined? Why ...
0
votes
1answer
48 views

C++ Shift Elements of an Array of a Struct Containing Structs

I used 2 for-loops to check for a match in both months and days, and when there is a match, i want it to copy the appointments in days[j] into days[i] without changing day[i]'s date. Then, move ...
1
vote
2answers
108 views

Array of arrays of arrays in C

How do you declare an array of arrays of arrays? Say I have an array s[]. s[0] will contain an other array a[] and a[0] will contain an array b[]. How would you do it with pointers?
0
votes
1answer
56 views

How to clean the Array after write some information

I first declare a pointer array int q,k; char ***schArray; schArray = malloc(sizeof(char**)*1000); for(q = 0; q < 1000; q++) { schArray[q] = malloc(sizeof(char*)*100); for(k = ...
0
votes
2answers
44 views

My program is setting the first array element to the NUM_EL rather than a random number but the rest of the elements get randoms

#define NUM_EL 10 int randomArray1[NUM_EL]; int randomArray2[NUM_EL]; int sumArray[NUM_EL]; //Function Protocol int IntializeArrayWithPointers(int, int, int); void DisplayArrayDataWithPointers(int); ...

1 2 3 4 5 33