473,497 Members | 2,190 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

sizeof struct array

ak
struct xy{
int x;
int y;
}
_xy[32];

size_of_xy(struct xy * a) {
int len = sizeof a;
printf( "\sizeof xy: %i\n", len );
}

int main( int argc, char ** argv ) {
size_of_xy(_xy);
}

the problem is that size_of_xy prints size of xy struct.
I need to print size of _xy array.

any ideas?

Andrei
Nov 14 '05 #1
15 15140
ak <sp**@imagero.com> wrote:
struct xy{
int x;
int y;
}
_xy[32]; size_of_xy(struct xy * a) {
int len = sizeof a;
ITYM sizeof *a;
The result of `sizeof' is type `size_t'.
printf( "\sizeof xy: %i\n", len );
} int main( int argc, char ** argv ) {
size_of_xy(_xy);
} the problem is that size_of_xy prints size of xy struct.
I need to print size of _xy array.
No way.
any ideas?


You have to pass the length of the array in another argument.

If you want more data encapsulation, you might think of sth like:

struct xy_array {
struct xy *xy_arr;
size_t xy_arr_len;
}; /*you are responsible for its contents*/

size_of_xy_array(struct xy_array *a) {
printf("size: %u\n", (unsigned)(sizeof(struct xy) * a->xy_arr_len));
}

--
Stan Tobias
sed '/[A-Z]//g' to email
Nov 14 '05 #2
ak wrote:
struct xy{
int x;
int y;
}
_xy[32];

size_of_xy(struct xy * a) {
int len = sizeof a;
printf( "\sizeof xy: %i\n", len );
}

int main( int argc, char ** argv ) {
size_of_xy(_xy);
}

the problem is that size_of_xy prints size of xy struct.
I need to print size of _xy array.

any ideas?


/* mha: you could read the FAQ before posting. Or if that's beyond
you, check the archives at groups.google.com. Those are the things
civilized people do before posting. In any case, consider the code
below */
#include <stdio.h>

#define array_size_info(a) do \
printf("The array has size %lu,"\
" each of the %lu elements has size %lu\n",\
sizeof a, sizeof a/sizeof *a, sizeof *a);\
while (0)

int main(void)
{
struct xy
{
int x;
int y;
}
xy[32];
array_size_info(xy);
return 0;
}
[output on my implementation]

The array has size 256, each of the 32 elements has size 8
Nov 14 '05 #3
ak
> /* mha: you could read the FAQ before posting. Or if that's beyond
you, check the archives at groups.google.com. Those are the things
civilized people do before posting. In any case, consider the code
below */
#include <stdio.h>

#define array_size_info(a) do \
printf("The array has size %lu,"\
" each of the %lu elements has size %lu\n",\
sizeof a, sizeof a/sizeof *a, sizeof *a);\
while (0)

int main(void)
{
struct xy
{
int x;
int y;
}
xy[32];
array_size_info(xy);
return 0;
}
[output on my implementation]

The array has size 256, each of the 32 elements has size 8


#include <stdio.h>

#define array_size_info(a) do \
printf("The array has size %lu,"\
" each of the %lu elements has size %lu\n",\
sizeof a, sizeof a/sizeof *a, sizeof *a);\
while(0)

struct xy {
int x;
int y;
}
first_xy[32], second_xy[64];

void do_something(struct xy *_xy) {
array_size_info(_xy);
}

int main( void ) {
array_size_info( first_xy );
array_size_info( second_xy );
do_something(first_xy);
do_something(second_xy);
return 0;
}

the output is:

The array has size 256, each of the 32 elements has size 8
The array has size 512, each of the 64 elements has size 8
The array has size 4, each of the 0 elements has size 8
The array has size 4, each of the 0 elements has size 8

as you can see array_size_info works wrong in do_something();

--
Andrei Kouznetsov
Nov 14 '05 #4
ak wrote:
/* mha: you could read the FAQ before posting. Or if that's beyond
you, check the archives at groups.google.com. Those are the things
civilized people do before posting. In any case, consider the code
below */
#include <stdio.h>

#define array_size_info(a) do \
printf("The array has size %lu,"\
" each of the %lu elements has size %lu\n",\
sizeof a, sizeof a/sizeof *a, sizeof *a);\
while (0)

int main(void)
{
struct xy
{
int x;
int y;
}
xy[32];
array_size_info(xy);
return 0;
}
[output on my implementation]

The array has size 256, each of the 32 elements has size 8

#include <stdio.h>

#define array_size_info(a) do \
printf("The array has size %lu,"\
" each of the %lu elements has size %lu\n",\
sizeof a, sizeof a/sizeof *a, sizeof *a);\
while(0)

struct xy {
int x;
int y;
}
first_xy[32], second_xy[64];

void do_something(struct xy *_xy) {
array_size_info(_xy);
}

int main( void ) {
array_size_info( first_xy );
array_size_info( second_xy );
do_something(first_xy);
do_something(second_xy);
return 0;
}

the output is:

The array has size 256, each of the 32 elements has size 8
The array has size 512, each of the 64 elements has size 8
The array has size 4, each of the 0 elements has size 8
The array has size 4, each of the 0 elements has size 8

as you can see array_size_info works wrong in do_something();


It works fine. You gave it a broken argument. I suggested that you
should have read the FAQ. I repeat that. If you can't figure out that
the argument given to array_size_info in do_something is a pointer and
not an array, may God have mercy on your soul.

Nov 14 '05 #5
ak
> If you can't figure out that
the argument given to array_size_info in do_something is a pointer and
not an array, may God have mercy on your soul.

sure, he has.

why I can't get size of array if I have only pointer to it?

--
Andrei
Nov 14 '05 #6
"ak" <sp**@imagero.com> wrote in message news:cd**********@online.de...
If you can't figure out that
the argument given to array_size_info in do_something is a pointer and
not an array, may God have mercy on your soul.


sure, he has.

why I can't get size of array if I have only pointer to it?


Because a pointer to an array holds a value that tells you where the start
of the array is, and nothing else (such as the size).

This is why, if you need it, you must pass the size of the array in another
argument. You might not always need the size; sometimes you can use a
sentinel value to indicate the end. A good example of this is strings in the
standard library, where '\0' is used as the sentinel value.

Alex
Nov 14 '05 #7
ak wrote:
If you can't figure out that
the argument given to array_size_info in do_something is a pointer and
not an array, may God have mercy on your soul.


sure, he has.

why I can't get size of array if I have only pointer to it?


I suggestes in my first reply, and repeated in the second, that you
should look to the FAQ, which you have obviously not done. How big a
hint do you need?
If you would *READ THE DAMN FAQ* you wouldn't keep asking these stupid
questions.
Nov 14 '05 #8
ak
> I suggestes in my first reply, and repeated in the second, that you
should look to the FAQ, which you have obviously not done. How big a
hint do you need?
If you would *READ THE DAMN FAQ* you wouldn't keep asking these stupid
questions.


Stay cool.
I'll make it. Sometimes.

--
Andrei
Nov 14 '05 #9


ak wrote:
I suggestes in my first reply, and repeated in the second, that you
should look to the FAQ, which you have obviously not done. How big a
hint do you need?
If you would *READ THE DAMN FAQ* you wouldn't keep asking these stupid
questions.

Stay cool.
I'll make it. Sometimes.


That's right! Keep cool.

You could make this array a typedef and then when your function
carries a pointer to this typedef, you can dereference it
for the size.

#include <stdio.h>

typedef struct _XY
{
int x;
int y;
} _XY[32];

void size_of_xy(_XY *a)
{
printf("The array has size %u,"
" Each of the %u elements has size %u\n"
"The pointer to the array has size %u\n",
sizeof *a,sizeof *a/sizeof(struct _XY),
sizeof(struct _XY),sizeof a);
}

int main(void)
{
_XY _xy;
size_of_xy(&_xy);
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 #10
On Sun, 18 Jul 2004 09:27:36 -0400, Al Bowers <xa******@rapidsys.com>
wrote:


ak wrote:
I suggestes in my first reply, and repeated in the second, that you
should look to the FAQ, which you have obviously not done. How big a
hint do you need?
If you would *READ THE DAMN FAQ* you wouldn't keep asking these stupid
questions.

Stay cool.
I'll make it. Sometimes.


That's right! Keep cool.

You could make this array a typedef and then when your function
carries a pointer to this typedef, you can dereference it
for the size.

#include <stdio.h>

typedef struct _XY
{
int x;
int y;
} _XY[32];

void size_of_xy(_XY *a)
{
printf("The array has size %u,"
" Each of the %u elements has size %u\n"
"The pointer to the array has size %u\n",
sizeof *a,sizeof *a/sizeof(struct _XY),
sizeof(struct _XY),sizeof a);
}


sizeof returns a size_t which need not be an unsigned int. If you
want to use %u to print the results, then you should cast the values.

You have three formats in the format string but four arguments that
follow. The first following argument (size *a) should be deleted.

Also note that to refer to an actual structure in the array, this
function would need to specify a[0][i]. This is because a is a
pointer to the array so a[0] is the array at that address and a[0][i]
is the i-th element of the array.

int main(void)
{
_XY _xy;
size_of_xy(&_xy);
return 0;
}


<<Remove the del for email>>
Nov 14 '05 #11
"ak" <sp**@imagero.com> writes:
If you can't figure out that
the argument given to array_size_info in do_something is a pointer and
not an array, may God have mercy on your soul.

sure, he has.

why I can't get size of array if I have only pointer to it?


Have you read the FAQ?

You have a pointer to the first element of the array, not a pointer to
the array itself.

Have you read the FAQ?

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Nov 14 '05 #12
ak

Have you read the FAQ? not yet, sorry
You have a pointer to the first element of the array, not a pointer to
the array itself.


I thought there is no difference in c between pointer to array and pointer
to first element of array.

Andrei
Nov 14 '05 #13
ak wrote:
Have you read the FAQ?


not yet, sorry

You have a pointer to the first element of the array, not a pointer to
the array itself.

I thought there is no difference in c between pointer to array and pointer
to first element of array.

Andrei


Why on earth would you think that? Consider..

int (*ap)[10]; /* a pointer to array 10 of int */
int *ip; /* a pointer to int */

Do the declarations of the two pointers even look the same?

Don't fight us Andrei, read something!
--
Joe Wright mailto:jo********@comcast.net
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
Nov 14 '05 #14
ak a formulé la demande :
Have you read the FAQ?

not yet, sorry
You have a pointer to the first element of the array, not a pointer to
the array itself.


I thought there is no difference in c between pointer to array and pointer
to first element of array.

The value is the same (probably) , but the type is different.

int main (void)
{
char s[123];

/* a pointer to a char */
char *psa = &s[0];
char *psb = s + 0;
char *psc = s;
char *psd = &s; /* warning */

/* a pointer to an array of 123 char */
char (*px)[123] = &s;
char (*py)[123] = s; /* warning */

return 0;
}
Nov 14 '05 #15
"ak" <sp**@imagero.com> writes:
Have you read the FAQ?

not yet, sorry
You have a pointer to the first element of the array, not a pointer to
the array itself.


I thought there is no difference in c between pointer to array and pointer
to first element of array.


You wouldn't think so if you'd read the FAQ.

The purpose of the FAQ is to answer Frequently Asked Questions, so we
don't have to spend time answering them over and over again here. A
lot of time and effort was dedicated to writing the FAQ list (mostly
by Steve Summit).

We've told you repeatedly that your questions are answered in the FAQ,
but you keep asking them.

If you don't want to read the FAQ, or if you want to put it off until
later, that's fine. But unti you've read it, please stop asking
questions that have already been answered for you. It's quite rude.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Nov 14 '05 #16

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

Similar topics

7
7182
by: Zero | last post by:
If we have a structure like: struct something{ int *a; int b; }; We allocate mempry for a using malloc or calloc. The question is when we want to know the size of the structure,...
10
2396
by: Sean | last post by:
I have a struct that I wrote to test a protocol. The idea I had was to just declare the elements of the struct in the order in which they are sent and received as defined by the protocol. ...
12
2095
by: news.fe.internet.bosch.com | last post by:
Hi All , I u find out size of struct , does it considers paddding chars into consideration struct A { char c; int i; };
6
10792
by: SB | last post by:
I feel dumb to ask because I bet this is a simple question... Looking at the code below, can someone please explain why I get two different values in my Marshal.SizeOf calls (see the commented...
74
4584
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...
32
2539
by: Abhishek Srivastava | last post by:
Hi, Somebody recently asked me to implement the sizeof operator, i.e. to write a function that accepts a parameter of any type, and without using the sizeof operator, should be able to return...
38
2558
by: James Brown | last post by:
All, I have a quick question regarding the size of pointer-types: I believe that the sizeof(char *) may not necessarily be the same as sizeof(int *) ? But how about multiple levels of pointers...
72
2975
by: goacross | last post by:
char ch='a'; int v=sizeof ++ch; cout<<ch<<endl;// output: 'a' why not 'b'? thanks
27
5562
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 --
0
6991
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7160
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
6878
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
1
4897
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4583
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3088
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3078
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1405
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
649
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.