The calloc function performs dynamic memory allocation in C, and is part of the standard library.
2
votes
2answers
54 views
Multidimensional arrays allocated through calloc
I have a question about how memory is allocated when I calloc. I had a look at this question, but it doesn't address how memory is allocated in the case of a dynamically allocated two dimensional ...
0
votes
1answer
44 views
Allocate memory for huge node tree dynamicly
I'm trying to make a function that allocates memory in blocks and than is able to assign a memory pointer for different structures linked together.
#define MEMSIZE 50*1024*1024*sizeof(char)
#include ...
0
votes
2answers
52 views
Why calloc wasn't intended to assign arbitrary values?
As per why malloc+memset slower than calloc?
malloc+memset is slower than calloc under certain conditions.
Why wasn't calloc written in such a way that it can take an extra value argument ( like ...
1
vote
2answers
53 views
C: How to point to calloc array?
I am trying to point a pointer to a calloc array. For some reason, when I reach the second element the program force quits. The first element prints out and works fine. Here is an example of my code ...
1
vote
4answers
70 views
Strange behavior for 'free' in C
I was writing a code to check if two functions I wrote to allocate and deallocate memory worked. The two functions were essentially
int createBaseName(char ***imageName, char **groupName, char *name)
...
-4
votes
0answers
86 views
C program using malloc won't compile
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
main()
{
srand((unsigned)time(NULL));
int *numbers;
int *numbers2;
int *combine;
numbers =(int *) ...
0
votes
3answers
82 views
calloc(), malloc() vs new-ing a struct that has an unordered_map inside
I am creating a struct that has a field that is an unordered_map on the heap. When I use new, I can add to it with no problem. But with calloc, I get an error inserting because the bucket size is 0. ...
1
vote
2answers
74 views
fread into array of structs segmentation fault
I've been working on this code for awhile now and I've run into a seg fault that I can't seem to debug. Here's the relevant code:
typedef struct Halo* Halo;
struct Halo
{
float x, y, z;
...
1
vote
2answers
65 views
How is the size of dynamic memory tracked in C [duplicate]
I understand that using calloc() and malloc() will allocate the specific amount of memory on the heap and return a pointer to the beginning of the allocation.
I also know that free( poinerVar) will ...
0
votes
2answers
48 views
Is my C structure and memory allocation correct?
Not sure if I have the correct syntax; my code is working, just want to run it past anyone that would like to comment to help improve it. I assume that allocating 20480 is not consuming any space ...
0
votes
2answers
85 views
Function that returns a pointer always returns the same value
I am fairly new to C++ programming and I have trouble understanding where I'm going wrong with my current project. I have a large array of uint32_t that I want to fill with preprocessed values. All is ...
0
votes
3answers
85 views
Malloc or calloc
here is a very small structure used for indexing words of a file. Its members are a string (the word), an array of integers (the lines this word is found at), and an integer representing the index of ...
6
votes
2answers
127 views
Does Anyone Use Calloc [closed]
I was wondering is anyone actually uses calloc(). I can think of a lot of situations where calloc would be more approprate but I always see malloc followed by a memset. This appears to be the ...
-2
votes
2answers
88 views
how calloc int32_t for just one element of struct [closed]
I am looking for calloc (memory allocation) for one element (int32_t) of struct. Here is the definition of the struct, and the way I wrote the calloc:
struct s_reader {
int32_t pd;
}
struct s_reader ...
1
vote
2answers
91 views
C Struct Padding on Initialization
Let's say I have a struct as such.
typedef struct
{
int a; // Let's say this ends up being 4 bytes
int b; // 4 bytes
char text[10]; // 10 bytes
} blah_t;
static blah_t myvar;
Let us ...
0
votes
0answers
16 views
Why calloc behaves differently in dynamic library(linux, so file)?
I find out calloc behaves defferently in so.
When I use this code :
int main()
{
void* handle = dlopen("./my.so", RTLD_GLOBAL | RTLD_NOW);
uintptr_t* p = (uintptr_t *)calloc(40*1024*1024, ...
0
votes
0answers
90 views
calloc / malloc wrapped by std::shared_ptr
I have some code that contains a self-made hashtable using calloc and malloc for memory allocation. I would like to modify these parts using a shared_ptr with a custom deleter that frees automatically ...
0
votes
1answer
61 views
how to read strings with commas by omitting them %[^,] not working for me
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef _MSC_VER
#include <crtdbg.h> // needed to check for memory leaks (Windows only!)
#endif
#define FLUSH ...
1
vote
2answers
99 views
most portable ways for memory allocation and freading arrays in C
Just wondering what is the soundest way to allocate memory and freading from a file in C.
First, an explanation:
int32_t longBuffer;
Now, when freading in the longBuffer, the code could go as:
...
-1
votes
2answers
96 views
c - successive calloc calls corrupt some memory
The code looks something like:
char *global1 = NULL;
char *global2 = NULL;
char *global3 = NULL;
char *global4 = NULL;
void func2(char *gPtr, char **gPtrToInitialize)
{
if(*gPtrToInitialize == ...
0
votes
1answer
31 views
how free unsigned pointer array and it's elements (calloc)
What is the best way to free unsigned pointer array allocated with cmallc?
uint8_t *buf;
buf = cs_calloc(ca->len + 13);
i do like this , but i know this is not quite right , since i got ...
0
votes
1answer
148 views
C Memory errors
I have to take numbers represented as strings and perform an addition operation on them. This is for homework, and what I have done so far sort of works. It outputs the correct output, but my ...
1
vote
1answer
116 views
2D arrays in NSPointerArray
I'm creating many 2D int and float C arrays and was going to assign their pointers to NSPointerArray. Everything is fine while I create and populate them with data, but when I do addPointer on array I ...
0
votes
1answer
74 views
realloc a triple pointer
Hi I have a triple pointer that I want to realloc when my original array is filled up. For some reason, the way I'm using realloc gives me a seg fault. Anybody have a sense why?
double ***matrixn;
...
1
vote
1answer
78 views
runtime error in a function copying from string to allocated memory
I have some second thoughts about the following C puzzle question. I'm curious what more experience C programmers may think... Have a look at the sample code:
char * strdup (const char * s) {
...
0
votes
2answers
153 views
can calloc or malloc be used to allocate ONLY physical memory in OSX?
I am playing around with the c functions malloc and calloc and I have some questions.
I want to see if I can use these 2 functions to allocate only physical memory, my mac has 4gb or ram and when I ...
0
votes
1answer
97 views
fwrite writing only the first element and deleting all the following elements
this is my first question on this website.
I have been making a C program for my college assignment. It's a game. I have used calloc to dynamically allocate memory for an array of structures. I am ...
1
vote
2answers
127 views
Calloc causes segfault but not malloc
I am implementing a ringbuffer and in one method I am reading CHUNKSIZE bytes from a file in a loop and insert the pointer into the ringbuffer.
I am doing this in a while loop. The code works fine ...
0
votes
0answers
79 views
Fread and linked lists in C
Hey guys I need your help.I'm trying to make a program which will read a txt and give me the number of sentences,words and non alphabetical words in each paragraph, using linked lists. However the ...
1
vote
2answers
77 views
Leaks with ARC enabled
My code seems to be leaking when using C arrays and I'm not sure why.
/* LeakyClass.m */
@property (nonatomic, assign) char **array1;
@property (nonatomic, assign) id __strong *array2;
@property ...
1
vote
3answers
69 views
malloc and other associated functions
I have an array named 'ArrayA' and it is full of ints but I want to add another 5 cell to the end of the array every time a condition is met. How would I do this? ( The internet is not being very ...
0
votes
2answers
99 views
Using malloc() for multiple inputs?
Alright I know that malloc or calloc can be used for dynamic allocation but as a new to C I don't know how to use that memory I allocated for inputting multiple inputs like in example of TC++ we have ...
1
vote
4answers
171 views
is it necessary to type-cast malloc and calloc [duplicate]
Possible Duplicate:
Do I cast the result of malloc?
I was googling to find out the reason for type-casting of malloc and calloc. But, i only found type-casting of malloc is not necessary ...
2
votes
4answers
89 views
Failure of free()
If I'm allocating memory in a loop like so
for(file = 0; file < nfile; file++){
...
...
...
for(yy = 0; yy < ngridy; yy++){
for(xx = 0; xx < ngridx; xx++) {
...
0
votes
2answers
95 views
Return type as a two dimensional array
The following piece of code gives an error for conflicting types of function fun2() when compiled.
#include<stdio.h>
#include<stdlib.h>
char *** fun(){
char *** b;
...
6
votes
1answer
274 views
calloc fails and returns NULL
in one of our application's module, calloc() is failing and returning NULL. The amount of memory that it is trying to allocate is of structure which is of 9292 bytes. The operating system is AIX 7.1 ...
1
vote
1answer
103 views
Reading and writing dynamically allocated memory
I have some code with following parts:
typedef unsigned long long int ulli_t;
typedef unsigned int obj_t;
// --- SOME UNIMPORTANT PART OF CODE
objects = (obj_t*)malloc(hw*sizeof(obj_t));
objNums = ...
0
votes
3answers
220 views
How long does Linux take to clear the heap memory
I was wondering... suppose I've dynamically allocated an array like
array = calloc(n, sizeof(float));
or something similar. And also if n is a really large number, (~ 1 million, for arguments ...
0
votes
1answer
322 views
crash in calloc
I'm trying to debug a program I wrote. I ran it inside gdb and I managed to catch a SIGABRT from inside calloc(). I'm completely confused about how this can arise. Can it be a bug in gcc or even ...
1
vote
0answers
91 views
ios Right way to free 2 dimensional memory allocated via calloc
I have a iOS app. I allocate 2d memory and then deallocate using free function. Is this the right way to free? Recently I had crash pointing to free statement. Should I be releasing buf[i] in loop?
...
1
vote
0answers
74 views
Trying to use C files in R package to implement in a standalone C program
I recently downloaded this R package (http://cran.r-project.org/web/packages/energy/index.html) and was able to successfully install it and run it on my system and calculate distance correlation.
...
3
votes
2answers
170 views
flexible mpz_t array in struct
I have a struct like this:
typedef struct{
size_t length; // length of the array
size_t numbits; // number of bits allocated per val in vals
mpz_t vals[]; // flexible array to hold some ...
0
votes
2answers
452 views
2D array dynamic memory allocation crashes [duplicate]
Possible Duplicate:
How do I correctly set up, access, and free a multidimensional array in C?
I am trying to dynamically allocate memory for a 2D array using calloc. The columns are fixed ...
0
votes
2answers
342 views
ARC is releasing calloc'ed memory?
Something strange is going on in my code. Basically im doing the network stream application that transfers some data into ring buffer memory on iOS and then afterwards read the memory.
I was getting ...
2
votes
1answer
200 views
Qt Creator - calloc fails with large memory
I have a problem with Qt Creator, or one of its components.
I have a program which needs lots of memory (about 4 GBytes) and I use calloc to allocate it. If I compile the C code with mingw/gcc ...
2
votes
2answers
187 views
Align the start of an array in dynamic memory in C [duplicate]
Possible Duplicate:
Aligned memory management?
I have an array which I am declaring like this
int * myarray;
int num_of_element;
myarry = (int*) calloc(num_of_elements, sizeof(int));
...
0
votes
2answers
143 views
free() function gives Core Dumped error
I wrote a simple code for merge sort but it gave me this error:
*** glibc detected *** ./merge: free(): invalid next size (fast): 0x09306058****Segmentation fault (core dumped)
This is the code:
...
5
votes
3answers
177 views
calloc(): Do the individual values matter for performance?
I'm currently writing an embedded application in C where performance is critical.
Currently, I'm allocating lots of empty memory like this: calloc(1, num_bytes) - however, I simply calculate ...
2
votes
1answer
467 views
Why does calloc fail to allocate 1GB on a system with 4GB of RAM?
I have a call to calloc for 1 element of just over 1 gigabyte. This call returns NULL, and checking errno reveals an insufficient memory error. However, during testing I have almost 4 gigabytes of ...
1
vote
4answers
486 views
Malloc, Calloc for testing the limits of my memory
I'm trying to write a c program to test how much memory is on my system.
I'm planning to run it under various different conditions:
With swap enabled
With swap disabled and overcommit ...
