Hi all
I have a datatype say X and I want to know its size without declaring a variable or pointer of that type and of course without using sizeof operator.
Is this possible. I thought of using standard header files which contain size and range of datatypes but that doesn't work with user defined datatype.
Any help will be appreciated.

Thanx

link|improve this question

1  
What do you mean "of course without using sizeof"? Why of course? – John Kugelman Aug 2 '09 at 16:25
Why not use sizeof? – kkaploon Aug 2 '09 at 16:26
2  
Being a riddle, you have to find an unusual, and possibly absurd, method to do it. See my answer. – Stefano Borini Aug 2 '09 at 16:29
2  
Follow-up question: I want to include a header file I wrote, without using any preprocessor directives, of course. How can I do that? – John Kugelman Aug 2 '09 at 16:35
3  
Why does it matter if this person should use something or not? The question is how to do it without using sizeof and we can either be helpful in answering it or not. Who cares if it'll ruin an interview question? The entire point of this website is to help others out, not to pick apart a question until it conforms to what we want. – Mike B Aug 5 '09 at 15:29
show 4 more comments
feedback

11 Answers

up vote 25 down vote accepted

To my mind, this fits into the category of "how do I add two ints without using ++, += or + ?". It's a waste of time. You can try and avoid the monsters of undefined behaviour by doing something like this.

size_t size = (size_t)(1 + ((X*)0));

Note that I don't declare a variable of type or pointer to X.

link|improve this answer
1  
This is certainly not standards compliant, but will work on most implementations anyway. – nos Aug 2 '09 at 16:47
2  
Oh my, that's the most horrible thing I've seen in my whole programmer life... – Stefano Borini Aug 2 '09 at 17:21
+1 by the way, I'm impressed anyway. – Stefano Borini Aug 2 '09 at 17:22
4  
@Stephano: it may be the most horrible thing you've seen in your life, but it's also more or less how offsetof is typically implemented... – Steve Jessop Aug 2 '09 at 18:05
1  
While 0 is guaranteed to mean "null pointer" in all implementations, it doesn't have to be represented internally by address 0, in which case this will fail. The C-FAQ claims that there do exist such machines c-faq.com/null/machexamp.html but they're not anything you're likely to encounter. Clever answer, by the way. :) – Tyler McHenry Aug 5 '09 at 15:58
show 2 more comments
feedback

Look, sizeof is the language facility for this. The only one, so it is the only portable way to achieve this.

For some special cases you could generate un-portable code that used some other heuristic to understand the size of particular objects[*] (probably by making them keep track of their own size), but you'd have to do all the bookkeeping yourself.

[*] Objects in a very general sense rather than the OOP sense.

link|improve this answer
feedback

Well, I am an amateur..but I tried out this problem and I got the right answer without using sizeof. Hope this helps.. I am trying to find the size of an integer.

int *a,*s, v=10;

a=&v;

s=a;

a++;

int intsize=(int)a-(int)s;

printf("%d",intsize);
link|improve this answer
feedback

The correct answer to this interview question is "Why would I want to do that, when sizeof() does that for me, and is the only portable method of doing so?"

link|improve this answer
feedback

The possibility of padding prevent all hopes without the knowledge of the rules used for introducing it. And those are implementation dependent.

link|improve this answer
feedback

You could puzzle it out by reading the ABI for your particular processor, which explains how structures are laid out in memory. It's potentially different for each processor. But unless you're writing a compiler it's surprising you don't want to just use sizeof, which is the One Right Way to solve this problem.

link|improve this answer
feedback

Look into the compiler sources. You will get :

  • the size of standard data types.
  • the rules for padding of structs

and from this, the expected size of anything.

If you could at least allocate space for the variable, and fill some sentinel value into it, you could change it bit by bit, and see if the value changes, but this still would not tell you any information about padding.

link|improve this answer
The compiler is always free to add additional padding anywhere, so there is no 'expected size' - except for sizeof(char), which is defined to be 1. Note that char may have more than 8 bits, however... – bdonlan Aug 5 '09 at 15:22
Can it really be more than 8 bits in C? In C++ it is defined as exactly 1 byte (logic inference: sizeof() returns the size of the argument in bytes, sizeof(char)==1 => char is exactly one byte) – David Rodríguez - dribeas Sep 9 '09 at 6:21
The word "byte" does not always mean "8 bits". It's basically defined as the smallest individually addressable unit of memory. 8-bit bytes are by far the most common, but there could be (and have been!) systems with 9-bit and even 36-bit bytes, and a system with 32-bit bytes is conceivable, if it doesn't already exist. – cHao Jun 17 '11 at 13:22
feedback

int a; printf("%u\n",(int)(&a+1)-(int)(&a));

link|improve this answer
feedback

Try this,

#define sizeof_type( type )  ((size_t)((type*)1000 + 1 )-(size_t)((type*)1000))

For the following user-defined datatype,

struct x
{
    char c;
    int i;
};

sizeof_type(x)          = 8
(size_t)((x*)1000 + 1 ) = 1008
(size_t)((x*)1000)      = 1000
link|improve this answer
feedback

if X is datatype:

#define SIZEOF(X) (unsigned int)( (X *)0+1 )

if X is a variable:

#define SIZEOF(X) (unsigned int)( (char *)(&X+1)-(char *)(&X) )
link|improve this answer
feedback

This takes into account that a C++ byte is not always 8 binary bits, and that only unsigned types have well defined overflow behaviour.

#include <iostream>
int main () {
    unsigned int i = 1;
    unsigned int int_bits = 0;
    while (i!=0) {
        i <<= 1;
        ++int_bits;
    }

    unsigned char uc = 1;
    unsigned int char_bits = 0;
    while (uc!=0) {
        uc <<= 1;
        ++char_bits;
    }

    std::cout << "Type int has " << int_bits << "bits.\n";
    std::cout << "This would be  " << int_bits/8 << " IT bytes and "
              << int_bits/char_bits << " C++ bytes on your platform.\n";
    std::cout << "Anyways, not all bits might be usable by you. Hah.\n";
}

Surely, you could also just #include <limit> or <climits>.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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