vote up 1 vote down star
1

Let us assume I have declared the variable 'i' of certain datatype (might be int, char, float or double) ...

NOTE: Simply consider that 'i' is declared and dont bother if it is an int or char or float or double datatype. Since I want a generic solution I am simply mentioning that variable 'i' can be of any one of the datatypes namely int, char, float or double.

Now can I find the size of the variable 'i' without sizeof operator?

flag

75% accept rate
3  
why don't you want to use sizeof() ? – chrmue Sep 8 at 11:12
2  
Found a similar question. stackoverflow.com/questions/1219199/… – adamantium Sep 8 at 11:15
A similar question is here, by the way: stackoverflow.com/questions/1219199/… – Dunya Degirmenci Sep 8 at 11:16
Meh, ninja'd... – Dunya Degirmenci Sep 8 at 11:17
@codingfreak: there is no variable of unknown datatype in C, as far as I know. Could you give an example of how you'd like to invoke the function/macro/... that you are looking for? – Joachim Sauer Sep 8 at 11:32

4 Answers

vote up 13 vote down check

You can use the following macro, taken from here:

#define sizeof_var( var ) ((size_t)(&(var)+1)-(size_t)(&(var)))

The idea is to use pointer arithmetic ((&(var)+1)) to determine the offset of the variable, and then subtract the original address of the variable, yielding its size. For example, if you have an int16_t i variable located at 0x0002, you would be subtracting 0x0002 from 0x0006, thereby obtaining 0x4 or 4 bytes.

However, I don't really see a valid reason not to use sizeof, but I'm sure you must have one.

link|flag
Darn ... trying it and getting the syntax right for my first C code in ages made me slow ;-) – Joachim Sauer Sep 8 at 11:17
I think this logic would be helpful to find the size of a datatype but how about a variable of unknown datatype – codingfreak Sep 8 at 11:23
What do you mean by unknown, how would you declare it ? If you have a variable like, say, int i, sizeof_var(i) will give you its size. – JG Sep 8 at 11:26
Let us suppose you have simply forgot for what datatype you have declared the variable 'i'. What I mean to say is irrespective of the datatype to which it has been declared we should still be able to find the size of the variable 'i' – codingfreak Sep 8 at 11:33
Responding to your edit, the macro works independently of the type of var. You can have either char i or long i, and sizeof_var(i) will return the correct result on both counts. – JG Sep 8 at 11:53
show 1 more comment
vote up 1 vote down

Look up the documentation for the compiler.

link|flag
vote up 0 vote down

Assuming the types you will check are built-in types, you may try to assign certain roof values to them (8-bit, 16-bit, 32-bit and 64-bit roof values) and see if it throws an exception.

link|flag
vote up 1 vote down

It's been ages since I wrote any C code and I was never good at it, but this looks about right:

int i = 1;
size_t size = (char*)(&i+1)-(char*)(&i);
printf("%zi\n", size);

I'm sure someone can tell me plenty of reasons why this is wrong, but it prints a reasonable value for me.

link|flag
I've no C compiler near me, but I wonder if it works. Can someone confirm this ? Really unexpected way to get the size of something – Clement Herreman Sep 8 at 11:23
1  
The only thing you need to fix is change void * to char * - you're not supposed to do pointer arithmetic with void *. – caf Sep 8 at 11:25
1  
I checked, it's OK with padding sizeof does the same and includes padding in the size of var. Hence it woks exactly the same. – kriss Sep 8 at 11:46
3  
Using (char*) instead of (void*) would avoid compiler warnings about void* arithmetic and does give the same result because a char has always size 1. – drhirsch Sep 8 at 11:57
2  
This will work on processors that have byte addressable memory. I am not sure whether this would work on the DSP56300 series processors where char and int are both stored in individual 24 bit wide memory locations. The processor does not have byte addressing so the difference between the pointer values for successive chars or ints will both be 1. – Ian Sep 8 at 13:44
show 8 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.