0
votes
2answers
52 views

Initialising 2d dynamic Array

I am new to C and trying to initialise a 2D array. I need both columns of the array to be char *, as they will contain string values. I have it working with the array storing ints but for some ...
0
votes
2answers
49 views

create an array of char arrays

If I have 5 arrays of char like this char a[6] = ""; char b[6] = ""; char c[6] = ""; char d[6] = ""; char e[6] = ""; and I also have this part of code which gets some tokens with strtok and put ...
0
votes
2answers
22 views

Multiple reading from file fails (char array malloc required?)

I am experiencing that calling read_from_fd more than once causes the data to be empty. #include <fcntl.h> #include <stdlib.h> #include <stdio.h> #include <unistd.h> int fd; ...
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
45 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
66 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 ...
0
votes
3answers
44 views

Reading from .txt file to array one line at a time (Matlab or C). “Insufficient memory” to load the whole file at once using 'A=load()'.

I have a .txt file containing 1000 rows and 100000 columns. A 10GB text file, of simulation results (real numbers) that I need to analyse. My data is of the form: [0.5 0.3 0.45 .. ; ...
-6
votes
1answer
38 views

how to call more than one element of array

I am using an array,i want to call 4 element from the array at the same time so i can use them in an equation ,any one knows how. example int a[10]={1,2,3,4,5,6,7,8}; I want 1234+15 how?
4
votes
4answers
92 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
2answers
28 views

does arrays and input with scanf goes hand in hand?

What is wrong with the following code written in c language? I encountered a segmentation fault. what is it? int a[2]; for(i=0;i<2;i++) { scanf("%d",a[i]); printf("%d",a[i]); } Why ...
-1
votes
6answers
85 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.
5
votes
4answers
156 views

How to avoid deprecated conversion from string constant to 'char*' in C++

I would like to call the following code in C++, which I cannot change: void getAge(char *name) { // do something } When I call it with getAge("hello");, it has the following warning: warning: ...
0
votes
6answers
91 views

Using 'memcpy' function

To copy an array b[] into the array a[], one can use function memcpy as follows; memcpy(a,b,sizeof(a)). But memcpy simply copies bytes from one place to another. My questions are: 1.How ...
2
votes
2answers
108 views

What are constant arrays?

What are constant arrays? If we define const char hex_char[] = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'}; Then,it should not be modified by program; What does it mean?
2
votes
1answer
200 views

Casting a pointer to struct to an array

I have a dynamically allocated array of structs. I want to cast it to an array type so my debugger will show the whole array. Is it possible? I know that this cast is not a good idea, but it's only ...
0
votes
3answers
48 views

Static 2D array in multiple files in C

I use a 2D array of chars that should be written & read by multiple functions in C. This is my array: static char array[3][6]; And let's say I have a function 'Function()' that modify this ...
0
votes
1answer
27 views

Openmp-C++ efficiency: an array of structures vs. several arrays

I am using c++ with openmp, and have a concern on the computational efficiency of the following two ways in organizing the data: (1) struct A { int n; double v; double f[3]; .... ...
1
vote
1answer
56 views

Problems while printing from main a string array created in a function with malloc

Why If I printf myarray[x] in main function I get no data (a blank line)? Array is correctly filled (if I print in function I get values) Here is my code: int main(void) { char thisxpath[300]; ...
-1
votes
3answers
55 views

Sorting Array while Skipping Value

I have this one-dimensional array: 0, 0, 2, 0, 0, 0, 1, 7, 4, 0 I need to be able to sort this Array in C with a sorting algorithm more efficient than Bubble Sort, like Insertion Sort. I also need ...
4
votes
1answer
80 views

Two-parameter Array Sort

I have a 14x14 array, with each element being binary-packed information that when unpacked will give me two parameters, A and B. (Let's put the parameters in the form A:B for easier discussion here.) ...
0
votes
1answer
45 views

Memory alignment in an array of structures

I have an array of structures defined as below: struct { int x; char y; } arr[10]; The size of int on my machine is 4 bytes and a char is of 1 byte. I know the structures would be padded ...
-2
votes
2answers
31 views

C finding maximum number in a row of 2D array and replacing it with elements in the upper triangle

Basically i want to create a 2 dimensional array size NxN, find the maximum value in each row and replace it in the upper triangle or rather replace the elements with the maximum it for that specific ...
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 ...
-6
votes
0answers
63 views

A program that generates a system of logical functions with given parameters (C-Language)

Good time! There is a problem, like and not complicated, but the brain has had time to kill myself Create a program that generates a system of logical functions with given parameters n-number of ...
1
vote
1answer
55 views

C- to check if a char in a string belongs in an array

Basically what I'm trying to do is that when a user inputs a string, my code will check the characters one by one and see if they belong to an array or not. For instance i have an array: char ...
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 ...
5
votes
4answers
144 views

Are two dimensional arrays in C required to make all elements contiguous?

I heard from a friend that two dimensional arrays in C are only supported syntactically. He told me to better use float arr[M * N] instead of float[M][N] because C compilers like the gcc can't ...
0
votes
7answers
68 views

typedef required in struct declaration

I'm trying to create an array of struct elements, as shown below: #include <stdio.h> #include <stdlib.h> struct termstr{ double coeff; double exp; }; int main(){ termstr* lptr = ...
0
votes
6answers
57 views

Expand array of structs using realloc

I am passing a struct through a function like so... expandArrayofStructs(Container *container, int n) This container is one struct and inside of that struct is an array of another type of struct ...
1
vote
1answer
38 views

Insert string into array - PAWN script

I am trying to cut down my file lines by having one variable to insert into several arrays. So I'd like to have a string, or an array variable, such as the following: new combomeals[] = { ...
-1
votes
2answers
128 views

Navigating arrays in C (performance)? [closed]

Is it better to use a pointer to navigate an array of values,or is it better to use a subscripted array name? How does the compiler treat both approaches?
-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] = ...
0
votes
1answer
48 views

what will happen if we copy more data from source to destination using memcpy?

I have the following code: int dst[5]; int src[100]; // assign value to array src memcpy(&dst[0], &src[0], sizeof(int) * 100); what will happen in this case? will only the first 5 elements ...
1
vote
1answer
56 views

how the following memcpy is beyond array in C?

I have the following code: #define NUM_STUDENTS 20 #define TIME_STUDENTS 10 typedef struct { int name; int age; } Student; typedef struct { int number; int post; } Contact; typedef ...
-9
votes
3answers
53 views

Access element of array of pointer of structure

I want to access the element of array of pointer to structure but i have no idea how to access it. #include<stdio.h> int main() { struct hash { int pages; int price; }; struct hash ...
-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
47 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
37 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
43 views

trouble with fopen and sprintf

I understand the syntax for fopen in C is fp = fopen ("file2.txt", "r"); My question is, if I wanted a txt file path in a char string that I made to be opened, could I do char str[100]; FILE *fp; ...
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
2answers
84 views

Putting Struct information into one big array

I am looking for a way to put an entire structs information into an array. The reason for this is that a function I am working with requires an array of information to read from. Instead of calling ...
-4
votes
1answer
107 views

Why a[v] = v[a]? [duplicate]

v it's an array of ints and a it's an int: #include <iostream> using namespace std; int main() { int v[10], a; cout << v[a] << endl; cout << a[v] << endl; return 0; } ...
2
votes
2answers
37 views

Warnings when creating a singly linked list with arrays

#include <stdio.h> typedef struct { int data; struct node *next; }node; void print(node *head) { node *tmp = head; while (tmp) { printf ("%d ", tmp->data); tmp = ...
1
vote
1answer
39 views

creating 4D lookup table

I need to create fast 4D lookup table according to the following: 1- it will receive 4 input variables (u,v,i,j) each one range from 0 to 15 2- the lookup table returns a precalculated value of 8 bit ...
-3
votes
3answers
84 views

array not being read properly

I have a 2D array. I am iterating all the 8 rows and 10 columns and reading the values using a for loop. Here is the our array and the output: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
0
votes
3answers
55 views

int array inside a struct inside a struct

I am trying to achieve this... A single container which holds an array of structs and inside each of these structs are a single int array which represents an integer like so... 12,345 would be inside ...
0
votes
3answers
39 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
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 ...
-1
votes
2answers
100 views

Strange behaviour when casting array char to array short

I have 2 array: the first one is 8 unsigned char, and the second one is 4 unsigned short, for some algorithm compatibility issue i need to use the short array with the values of the char array, to do ...
-5
votes
2answers
64 views

error expected ';' before ')' in simple array code [closed]

im trying to learn c code on my own. this was a exercise i found on the book. But i can't seem to solve it for (i=1;i<=3,i++) i think this code is wrong can someone confirm it i tried ...

1 2 3 4 5 81