473,379 Members | 1,539 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,379 software developers and data experts.

sizeof dynamic array

D
hi,

i would like to know how to calculate the size of a dynamic array
created using a dereference declaration like int *numbers and
allocating via malloc or calloc: numbers=(int
*)malloc(sizeof(int)*10);

using sizeof(numbers) will return the pointers size...

is there a possibility?

D@nny
--
life already is expensive, so why waste money on expensive
software.
Nov 14 '05 #1
11 12000
"D@nny" <no@thanx.nl> wrote in message
news:fZ****************@amsnews03-serv.chello.com...
hi,

i would like to know how to calculate the size of a dynamic array
Determine how big you need it to be, and allocate that much.
created using a dereference declaration like int *numbers
That's not a 'dereference declaration'. Its a declaration
of a pointer object.
and
allocating via malloc or calloc: numbers=(int
*)malloc(sizeof(int)*10);
Never cast the return value from 'malloc()'. See the FAQ
for details.

using sizeof(numbers) will return the pointers size...
Yes. Because 'numbers' is a pointer.

is there a possibility?


Yes. You know the size when you allocate it. Just retain
that value (i.e. store it in a 'size_t' object).

int *numbers = 0;
size_t sz = 10 * sizeof *numbers;

if(numbers = malloc(sz))
{
printf("%lu bytes allocated.\n", (unsigned long)sz);
/* do stuff */
free(numbers);
}

-Mike
Nov 14 '05 #2
D@nny wrote:
hi,

i would like to know how to calculate the size of a dynamic array
created using a dereference declaration like int *numbers and
allocating via malloc or calloc: numbers=(int *)malloc(sizeof(int)*10);
Guess what: the size of the array is sizeof(int)*10. What did you think
it was.

BTW, your code line above is not, at least here, idiomatic. Had you
lurked before posting (expected usenet behavior) or checked the FAQ
before posting (expected usenet behavior), you would have no this.

You have no idea how many people everyday violate those two standard
rules every day just to post code that casts the return value from
malloc (corrected several times a day here), uses hard-coded magic
numbers, uses hard-coded data types in allocation statements, asks
questions answered multiple times a week (as is yours), and fails to
include a compilable example.

#include <stdlib.h>
int main(void)
{
const number_elements = 10;
int *numbers;
numbers = malloc(number_elements * sizeof *numbers);
if (!numbers) { /* handle error */ }
else free(numbers);
return 0;
}
using sizeof(numbers) will return the pointers size...

is there a possibility?


Obviously, there is. If you can figure out how much space to ask malloc
for, you already know the answer.
Nov 14 '05 #3
D@nny <no@thanx.nl> scribbled the following:
hi, i would like to know how to calculate the size of a dynamic array
created using a dereference declaration like int *numbers and
allocating via malloc or calloc: numbers=(int
*)malloc(sizeof(int)*10); using sizeof(numbers) will return the pointers size... is there a possibility?


Not in standard C. You'll have to use implementation-specific tricks.
But since you know the size when you allocate the memory, why not simply
keep track of it?

--
/-- Joona Palaste (pa*****@cc.helsinki.fi) ------------- Finland --------\
\-------------------------------------------------------- rules! --------/
"To know me IS to love me."
- JIPsoft
Nov 14 '05 #4


D@nny wrote:
hi,

i would like to know how to calculate the size of a dynamic array
created using a dereference declaration like int *numbers and
allocating via malloc or calloc: numbers=(int
*)malloc(sizeof(int)*10);

using sizeof(numbers) will return the pointers size...

is there a possibility?


What you should do is declare a variable, ex. size_t nelements,
that you can use to store the number of elements allocated for
the int array. If you dynamically allocated the array for
10 elements, then store in nelements the value 10. If you
modify the number of array elements, then modify nelements
appropriately. In the occasion where you might need the
total size of the allocation, just multiply the sizeof(int)
with nelements.

#include <stdio.h>
#include <stdlib.h>

int main(void)
{
int *iarr, *tmp;
size_t nelements = 0;

iarr = malloc((sizeof *iarr)*10);
if(iarr) nelements = 10;
printf("Number of elements allocated is %u\n"
"Size of the allocation is %u\n\n",
nelements, nelements*sizeof(int));
if(nelements)
{
puts("An attempt to increase the allocation one element\n");
tmp = realloc(iarr,(sizeof *iarr)*(nelements+1));
if(tmp)
{
iarr = tmp;
nelements++;
}
printf("Number of elements allocated is %u\n"
"Size of the allocation is %u\n\n",
nelements, nelements*sizeof(int));
}
free(iarr);
return 0;
}
--
Al Bowers
Tampa, Fl USA
mailto: xa******@myrapidsys.com (remove the x to send email)
http://www.geocities.com/abowers822/

Nov 14 '05 #5

"Mike Wahler" <mk******@mkwahler.net> wrote in message
news:cf*****************@newsread3.news.pas.earthl ink.net...
"D@nny" <no@thanx.nl> wrote in message
news:fZ****************@amsnews03-serv.chello.com...
hi,

i would like to know how to calculate the size of a dynamic array


Determine how big you need it to be, and allocate that much.
created using a dereference declaration like int *numbers


That's not a 'dereference declaration'. Its a declaration
of a pointer object.
and
allocating via malloc or calloc: numbers=(int
*)malloc(sizeof(int)*10);


Never cast the return value from 'malloc()'. See the FAQ
for details.


Hello I am not the original poster... but this seems interesting.

I can't the answer in this FAQ;

http://www.eskimo.com/~scs/C-faq/s7.html

Why shouldn't it be typecasted ?

1. Maybe because it doesn't compile on true c compilers ?

2. Or does it lead to bugs ?

Bye,
Skybuck.
Nov 14 '05 #6
On Sun, 7 Nov 2004 15:47:26 +0100, "Skybuck Flying"
<no****@hotmail.com> wrote:

"Mike Wahler" <mk******@mkwahler.net> wrote in message
news:cf*****************@newsread3.news.pas.earth link.net...


snip
Never cast the return value from 'malloc()'. See the FAQ
for details.


Hello I am not the original poster... but this seems interesting.

I can't the answer in this FAQ;

http://www.eskimo.com/~scs/C-faq/s7.html

Why shouldn't it be typecasted ?


a. It is unnecessary in C. Superfluous casts should always be
avoided.

b. It leads to undefined behavior (under C89, currently the standard
implemented by most popular compilers) if the prototype for malloc is
omitted.
<<Remove the del for email>>
Nov 14 '05 #7

"D@nny" <no@thanx.nl> wrote in message
news:fZ****************@amsnews03-serv.chello.com...
hi,

i would like to know how to calculate the size of a dynamic array
created using a dereference declaration like int *numbers and
allocating via malloc or calloc: numbers=(int
*)malloc(sizeof(int)*10);

using sizeof(numbers) will return the pointers size...

is there a possibility?


As others have mentioned, keep track of the size when you allocate the
array.

I suppose one possible exception is a null-terminated char array where you
can call 'strlen' to get the length of the array.
Nov 14 '05 #8

Method Man wrote:
"D@nny" <no@thanx.nl> wrote in message
news:fZ****************@amsnews03-serv.chello.com...
hi,

i would like to know how to calculate the size of a dynamic array
As others have mentioned, keep track of the size when you allocate the array.

I suppose one possible exception is a null-terminated char array where you can call 'strlen' to get the length of the array.


That gives you length of the string, not the size of the array. They
are often different. So for instance, you have no way of knowing
whether you can extend the string safely unless you know the size of
the underlying array.

Brian

Nov 14 '05 #9

"Method Man" <a@b.c> wrote in message
news:H1*******************@read2.cgocable.net...

"D@nny" <no@thanx.nl> wrote in message
news:fZ****************@amsnews03-serv.chello.com...
hi,

i would like to know how to calculate the size of a dynamic array
created using a dereference declaration like int *numbers and
allocating via malloc or calloc: numbers=(int
*)malloc(sizeof(int)*10);

using sizeof(numbers) will return the pointers size...

is there a possibility?


As others have mentioned, keep track of the size when you allocate the
array.

I suppose one possible exception is a null-terminated char array where you
can call 'strlen' to get the length of the array.


char *array = malloc(100);
size_t sz = 0;

if(array)
{
strcpy(array, "Hello");
sz = strlen(array); /* sz != 100 */
}

free(array);

-Mike
Nov 14 '05 #10

"Mike Wahler" <mk******@mkwahler.net> wrote in message
news:mk******************@newsread1.news.pas.earth link.net...

"Method Man" <a@b.c> wrote in message
news:H1*******************@read2.cgocable.net...

"D@nny" <no@thanx.nl> wrote in message
news:fZ****************@amsnews03-serv.chello.com...
hi,

i would like to know how to calculate the size of a dynamic array
created using a dereference declaration like int *numbers and
allocating via malloc or calloc: numbers=(int
*)malloc(sizeof(int)*10);

using sizeof(numbers) will return the pointers size...

is there a possibility?


As others have mentioned, keep track of the size when you allocate the
array.

I suppose one possible exception is a null-terminated char array where you can call 'strlen' to get the length of the array.


char *array = malloc(100);
size_t sz = 0;

if(array)
{
strcpy(array, "Hello");
sz = strlen(array); /* sz != 100 */
}

free(array);


Yeah, I should have noted that 'strlen' gives the length of the string and
not necessarily the allocated size of the array. That's why I said "possible
exception".
Nov 14 '05 #11

"Method Man" <a@b.c> wrote in message
news:cw*******************@read2.cgocable.net...

"Mike Wahler" <mk******@mkwahler.net> wrote in message
news:mk******************@newsread1.news.pas.earth link.net...

"Method Man" <a@b.c> wrote in message
news:H1*******************@read2.cgocable.net...

"D@nny" <no@thanx.nl> wrote in message
news:fZ****************@amsnews03-serv.chello.com...
> hi,
>
> i would like to know how to calculate the size of a dynamic array
> created using a dereference declaration like int *numbers and
> allocating via malloc or calloc: numbers=(int
> *)malloc(sizeof(int)*10);
>
> using sizeof(numbers) will return the pointers size...
>
> is there a possibility?
>

As others have mentioned, keep track of the size when you allocate the
array.

I suppose one possible exception is a null-terminated char array where you can call 'strlen' to get the length of the array.
char *array = malloc(100);
size_t sz = 0;

if(array)
{
strcpy(array, "Hello");
sz = strlen(array); /* sz != 100 */
}

free(array);


Yeah, I should have noted that 'strlen' gives the length of the string and
not necessarily the allocated size of the array.


Right. The point is that there is no way to determine after the fact
how much memory was allocated. Another 'subtle' point: 'malloc()'
is required to attempt to allocate *at least* the requested size.
It is allowed to (and often does) allocate more (but the program
must only access within bounds of the requested size).
That's why I said "possible
exception".


In standard C, no exceptions.

-Mike
Nov 14 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

33
by: Metzen | last post by:
hello, ok, I want to find the length of an int array that is being passed to a function: main() { int array={1,2,3,4,5,6,7,8}; function(array); } function(int *array) {
15
by: fdunne2 | last post by:
The following C-code implements a simple FIR filter: //realtime filter demo #include <stdio.h> #include <stdlib.h> //function defination float rtFilter1(float *num, float *den, float...
8
by: junky_fellow | last post by:
Consider the following piece of code: #include <stddef.h> int main (void) { int i, j=1; char c; printf("\nsize =%lu\n", sizeof(i+j));
74
by: ballpointpenthief | last post by:
If I have malloc()'ed a pointer and want to read from it as if it were an array, I need to know that I won't be reading past the last index. If this is a pointer to a pointer, a common technique...
2
by: flyvholm | last post by:
According to a couple of other threads you can't use sizeof with dynamic arrays - you'll have to keep track of the memory allocated. In my case, strings are filled into a dynamic array by a...
58
by: Nishu | last post by:
Hi All, When I run the below program in MSVC, I get the output as 1 4 Could you tell me why sizeof 'A' is taken as 4? Is it standard defined or compiler specific? Thanks, Nishu...
9
by: Faisal | last post by:
Hi, Why C++ doesn't allow overloading of size of operator. I think it would be much handy to check the type userdefined types. For eg. In my project, I've some structures which contains...
7
by: alternative451 | last post by:
Hi, I have just one question : how to know the size of an array, i have un little program, i use first static, ant i can use sizeof() to know the size, but when i put it as paremeter in the...
27
by: CodeMonk3y | last post by:
gotta question on sizeof keyword does the sizeof keyword calcuates the size at compile time or run time ?? -- Posted on news://freenews.netfront.net - Complaints to news@netfront.net --
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.