Possible Duplicate:
Determine word size of my processor

It is One Interview question today. But I didn't know ...


I think the interviewer meaned the word size of cpu.


I find an answer like this:

int cpu_bits(void *dummy1, void *dummy2) 
{ 
 long offset = (long)&dummy2 - (long)&dummy1; 
 int ret = 0; 
 if (8 == offset) 
     ret = 64; 
 else if (4 == offset) 
     ret = 32; 
 else if (2 == offset) 
     ret = 16; 
 else if (1 == offset) 
     ret = 8; 
 else 
     ret = -1; 
 return ret;  
} 

int main() 
{ 
 printf("%d\n", cpu_bits(NULL, NULL)); 
 return 0; 
} 

The result seems to be right, Do you think so ?

link|improve this question

6  
I would begin the answer by asking the interviewer for the exact definition of word size that they had in mind... – aix Oct 10 '11 at 11:05
@PaulR What if the word size if 8 bits? In C, int is always at least 16 bits. – Juho Oct 10 '11 at 11:05
@Juho: yes, I've withdrawn my answer and comments now that I've had time to think about it... ;-) – Paul R Oct 10 '11 at 11:11
@wong2 Yes, thank U ! It's exactly what i want. – Flybywind Oct 10 '11 at 11:13
feedback

closed as exact duplicate by Paul R, Jens Gustedt, forsvarir, David Heffernan, leppie Oct 10 '11 at 12:49

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 2 down vote accepted

Short answer: the standard does not define a data type that is guaranteed to correspond to the word size of the underlying architecture, and what "word size" means on modern CPU's is quite a vague thing: Word Size versus Address Size.

With current processors having compatibility modes, registers of a different size, advanced addressing modes and instructions suited for data of various widths, talking of a general "word size" is imprecise, to say the least.

I suppose the interviewer is still living in the 90's and remembers the dubiously called WORD and DWORD types that were introduced by WinAPI when most computers were still 16-bit.

link|improve this answer
feedback

I think they were expecting something like this:

printf("%d\n", (int)sizeof(int) * CHAR_BIT);
link|improve this answer
1  
sizeof(int) does not work if the word size is 8 bits. Also, in most 64-bit compilers int is 32-bit while the word is 64 bits. – Juho Oct 10 '11 at 11:08
@PaulR: we've hit a race condition with our posts and edits. :) – Alex Oct 10 '11 at 11:08
@Juho: what do you mean it doesn't work? Btw, int must be at least 16 bits long per the C standard. Figuring out the underlying, hardware, word size is probably something that you can't do reliably in C. – Alex Oct 10 '11 at 11:11
2  
@Alex: don't cast the expression to int, there's the %zu modifier to print a value of type size_t. – Blagovest Buyukliev Oct 10 '11 at 11:11
1  
@Alex: What I meant is that sizeof(int) does not always return the machine word size since int is not always the same as machine word. On 8-bit processors int is probably 16-bit while word is 8-bit. Same goes for most x86_64 compilers where int is 32-bit and word is 64 bits. – Juho Oct 10 '11 at 11:17
show 4 more comments
feedback

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