0
votes
4answers
84 views

How to make a user defined array of struct in C

I would like the user to define the size of the array when the program starts, I currently have: #define SIZE 10 typedef struct node{ int data; struct node *next; } node; struct ko { ...
1
vote
5answers
63 views

Dynamic C, How to add 2 “hours” as 4 digit Integer

I need to know how can I add 2 "hours" as integer? It is 24-h format int add2Hours(int _time1,int _time2) { } sample: 13:45 is: (hhmm) 1345 1345 + 30 returns 1415
-6
votes
0answers
28 views

Dynamically allocating space for a new ArrayList (C) [closed]

the function ArrayList *createArrayList(int length); is supposed to dynamically allocate space for a new ArrayList. Initialize its internal array to be of length length or DEFAULT_INIT_LEN, whichever ...
1
vote
1answer
48 views

Conditionally replacing a C function at runtime

Is it possible to conditionally replace a function at runtime in C (in particular, a function in a dynamically loaded library)? I know that you can use LD_PRELOAD or just make a function of the same ...
0
votes
2answers
43 views

Idea on how to create a C function that takes a character string and returns a character string with date and time

I'm pretty much new to C and I would like to write a function where it takes a character string and returns a character string with current date and time in the front. I need it for some logging ...
0
votes
2answers
71 views

Dynamically allocate an array of unspecified size in C

I want to take an input in c and don't know the array size. please suggest me the ways how to do this.. hello this is a sample string to test.
-5
votes
3answers
62 views

Cannot Break Out of a “While” loop

I am converting a 2-d char array into a 2-d int array, and I need to break out of the while loop if \0 or \n comes in the string. This code gives segmentation fault. Definition of Array is and the ...
1
vote
1answer
36 views

How to pass a bidimensional matrix by parameter to a function in C

I have a question about matrices. I have a program to calculate checkers moves; I solved it in Java, but it won't run fast enough and I decided to try it in C. The problem is that in Java I can pass ...
-1
votes
3answers
63 views

Loop ending condition is not working - C

I have a homework regarding dynamic arrays, therefore I was trying to understand how it works with simple programs. #include <stdio.h> #include <string.h> #include <stdlib.h> int ...
-2
votes
1answer
55 views

Creating realloc array in C function and sending it to another

My code: void calculations(int *data1, int *data2, int size1, int size2){ if (size1 != 0 && size2 != 0){ int *temp_data = NULL; all_in_one(&temp_data, data1, data2, *size1, ...
1
vote
2answers
66 views

dynamic link libraries on linux

I'm running a tiny embedded linux system, my application uses a whole bunch of dynamically linked libraries (*.SO files). I'm trying to save disk space, so I thought I could zip up all the .SO files ...
1
vote
2answers
65 views

Deallocation of Dynamic Arrays?

Here's the code I am working with... while(temp[i]!=0){ while(temp[i]!=3){ FrameBuffer[a]=temp[i]; i++; a++; } FrameBuffer[a]=temp[i]; printf(" Framebuffer: %s ...
0
votes
2answers
35 views

Dynamic Array with Pointers to Objects in Out-Parameters

I have a function that fetches several X.509 certificates from a server. I want it to "return" an array of those certificates in OpenSSL's X509 * structs. But since my interface returns error codes, I ...
0
votes
3answers
130 views

Dynamic structure array in structure in C

I'm quite new to C programming, and I have stumbled on some tricky problem. What I want to do is define a dynamic structure array in another structure in C. Here is my code: First I define the ...
1
vote
1answer
48 views

Why is dynamic allocation not required here

Why is dynamic allocation not required in this code? int knapSack(int W, int wt[], int val[], int n) { int i, w; int K[n+1][W+1]; // Build table K[][] in bottom up manner for (i = ...
-1
votes
1answer
66 views

Pointer arithmetic to fill dynamically allocated array in C [closed]

I allocated an array using malloc and than tried filling it using a for loop and pointer arithmetic, It's not working for some reason though. int* myArray = (int*)malloc(100*sizeof(int)); for (int i ...
1
vote
1answer
84 views

Creating dynamic vector on predefined struct

I have a predefined struct to use : typedef struct somestruct_s { int s; union { unsigned char *ptr; unsigned char l_ptr[sizeof(char *)]; }; }somestruct_t, *somestruct; ...
0
votes
1answer
81 views

Print a string sent via pointer C

I have this struct Cheltuieli * creeaza(int numar_apartament,int suma,char * tipul){ Cheltuieli * cheltuiala=malloc(sizeof(Cheltuieli)); cheltuiala->numar_apartament=numar_apartament; ...
0
votes
2answers
128 views

Sorting algorithm for a Dynamic Array in C

I am trying to sort a Dynamic Array that contains Costs as elements. This is my sorting function: void ascending_sort(Controller* ctrl) //the function is in the controller { int i,j; ...
1
vote
3answers
116 views

Dynamic array ascending sort in C

I am trying to sort a Dynamic Array list but it just doesn't work and I don't understand how I should do it. This is what I've done so far: void ascending_sort(Controller* ctrl) { int ...
0
votes
2answers
53 views

realloc and free

double * copyTemp=NULL; double * output= malloc(sizeof(double*)*MallSize); double test1[] = {1.2,2.2,3.1}; double test2[]={ 0.1,0.2,0.3,0.5,0.7,1.1,1.2,2.2}; int i=0; int j=0; ...
0
votes
4answers
148 views

C - dynamic function call without a function pointer

I would like to call C functions (e.g. form the stdlib, math ...) dynamically. This means that my C program only knows the pointer to a random function (e.g. printf) and its signature (coded as a char ...
2
votes
3answers
91 views

Why can I set a character array larger than I'm reserving with malloc()?

Why does this print out "test"?: char *str; str = (char *)malloc(1); str[0] = 't'; str[1] = 'e'; str[2] = 's'; str[3] = 't'; I'm trying to dynamically expand a string and ...
0
votes
3answers
96 views

concatenate 2 matrices

I have a matrix dynamically allocated and I want to create another one which is the first matrix but with another copy beside. for example,I have the matrix: 11 22 My new matrix will be: 1 1 1 ...
1
vote
3answers
92 views

Dynamic global variables in C

Can someone please explain to why this won't work: int DIM = 128, hDIM = DIM/2 , dDIM = DIM*2; int main(int argc, char **argv){ DIM *= 2; printf("\n Double DIM is %d \n",dDIM); } Why ...
0
votes
0answers
83 views

Optimal Memory Utilization in realloc (splitting?)

I'm having difficulty with coding my realloc function. I have it working through standard memcpy procedure, but I can't get it optimized. I know there are two other cases I need to accommodate for: ...
1
vote
2answers
107 views

Freeing pointer to pointers

I have an array user_input which is to contain char*. Now, the size of this array would be determined at runtime by the following code. char** user_input; user_input = (char**)malloc(get_size()); ...
0
votes
2answers
94 views

Crash when printing a dynamic string array

I'm having trouble using string arrays. When creating the string array, I can print the data of e.g. globals[0], but at the end of the function the application crashes when doing the same thing. Does ...
1
vote
1answer
81 views

Returning a string in C

I'm trying to return a char array from memory and I just get some random value. I can't figure out what's wrong. This is my code: stack.h: struct node{ char s[MAX_STRING_SIZE]; struct node * ...
0
votes
0answers
37 views

How to get the user input into a dynamic char array on C? [duplicate]

For example: char *t; printf("Enter the value of t: "); How can I save the user input into t? What can I do next?
0
votes
1answer
75 views

Is this correct code for dynamic array allocation in C

void dynamicArray(int** num1, int** num2, char*** str, int size) { int i = 0; *(num1) = (int*)malloc(sizeof(int) * size); *(num2) = (int*)malloc(sizeof(int) * size); *(str) = ...
-2
votes
1answer
93 views

C matrix function segmentation fault

I have this piece of code that gives me SEGMENTATION FAULT when the function loadRow(tmpPop,bestOf4Route,k,n); is called the fifth time. In particular, the function is called correctly at the first ...
3
votes
2answers
119 views

Create and resize dynamic array without C libraries?

Is there a way to actually create dynamic arrays in C without having to use the stdlib? Malloc requires the stdlib.h library, I am not allowed to use this in my project. If anyone has any ideas, ...
1
vote
1answer
626 views

Dynamic memory allocation 2d array in C [closed]

int **twoDary = (int**) (malloc(rows * sizeof(int *))); int **twoDaryStart = twoDary; int *currentrow; for ( i = 0; i < rows; i++ ){ // Originally: for (i = 0; i < columns; i++) *(twoDary ...
1
vote
4answers
83 views

(C) Pointer not properly evaluation dereference operator

I am working on a project for school and I have managed to figure out a work around by doing something really clunky with my code. I have a structure that holds multiple fields, and I am trying to ...
0
votes
5answers
92 views

Dynamic sized string in C

I have the following code and to edit the string of a "path" that I will be working on in a program that I am creating. My problem is that I the code works, but I have no idea why or to be clearer I ...
0
votes
2answers
93 views

how to create a global 2d array in C

global.h: extern char ** map_stage; global.c: here occours the error C2099 - Initialization is not a constant char ** map_stage=create2DCharArray(map_height,map_length*map_length); function ...
1
vote
3answers
81 views

c How protect dynamic char before overwritte by second dynamic char

#include <stdio.h> #include <stdlib.h> #include <string.h> char print_two(char *reg, char *s) { int i, l_s = (int) strlen(s), l_reg = (int) strlen(reg); for(i = 0; i < ...
3
votes
4answers
572 views

C - shared memory - dynamic array inside shared struct

i'm trying to share a struct like this example: typedef struct { int* a; int b; int c; } ex; between processes, the problem is that when I initialize 'a' with a malloc, it becomes ...
1
vote
3answers
159 views

Dynamic memory allocation in C using realloc

I have read the other SO question about using realloc to get a new pointer to the beginning of a bigger memory address space but I cant figure out what I am doing wrong. It prints a backtrace and ...
0
votes
6answers
68 views

passing element of dynamic multidimensional array to a function

I have code which already works but am trying to extend it. unsigned char **data_ptr; Allocate memory for the first "array" data_ptr = (unsigned char **)malloc(sizeof(unsigned char **) * ...
2
votes
2answers
86 views

How do I access data from a dynamic array in c?

I've got two different arrays that I'm using. With one, I'm getting the exact results that I want, the other, not so much. I'm filing the arrays with by reading from a text file similar to this: ...
1
vote
1answer
68 views

C Loading Code dynamically in the same way as the Java Compiler Api 7

I have the following use case which I had previously solved in Java, but am now required to port the program to C. I had a method A which called a method do_work() belonging to an abstract class ...
0
votes
2answers
271 views

How to read data from binary file in dynamic array in C

In the following code, I try to read data from a binary file and write it into a dynamic array. The function "getAnz" should give me the numbers of datasets. In the function "readRecs", I want to ...
1
vote
5answers
102 views

Entering the number of elements in malloc function for a dynamic structure array in c

At the moment, I try to understand dynamic arrays in C. When I allocate the memory for the pointer "ptr", it is working without entering the numbers of elements (in the malloc function) I need. Now, ...
0
votes
1answer
74 views

Dynamic matrix with function c [closed]

I have to make a dynamic matrix using a function in C. I made this: #include <stdio.h> #include <malloc.h> int r=3; int c=3; int i; void matrix(int *** m) { ...
0
votes
2answers
144 views

C - (C99) , how to create a stack struct, without using stdlib.h (without malloc) [closed]

I have a homework for tomorrow, and am asked to make a dynamic (resizable) stack, that saves chars. This thing have been driving me crazy, been on it all day. I did it using the stdlib and it was ...
0
votes
2answers
79 views

Add code to block dynamically

I'm pretty new to using blocks. I'm wondering if there is a way to add code dynamically to a block? A mutable block if you will.
-1
votes
4answers
96 views

Memory Allocation with Arrays [duplicate]

Possible Duplicate: Using Dynamic Memory allocation for arrays I originally had this program store prices with a quantity size of ten and realized that I wanted to make the program more ...
0
votes
2answers
100 views

Converting string to expression in C [duplicate]

Possible Duplicate: What is a fast C or Objective-C math parser? What function code could I use to convert a dynamic string into an expression and evaluate it ? #include <stdio.h> ...

1 2 3 4 5