Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to find the sizeof(a pointer pointing to an array)

I am creating an array by using following code

float *A;
A = (float *) malloc(100*sizeof(float));
float *B;
B = (float *) malloc(100*sizeof(float));

but after these when I type an print the size of the A and B by the following, I get 2 as a result as I expect to see 100.

sizeof(A)/sizeof(float)
share|improve this question
6  
use std::vector – Cheers and hth. - Alf Jan 27 at 0:30
Your expectation, that the size of a pointer should change if you change what it's pointing to, is unreasonable. (Now, if this was an array passed to a function, you'd have a point.) – David Schwartz Jan 27 at 0:40
-1 solely for being moronic to helpful experts in comments – Lightness Races in Orbit Jan 27 at 3:12

marked as duplicate by dasblinkenlight, Griwes, Code-Guru, R. Martinho Fernandes, Erogol Jan 27 at 1:48

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 4 down vote accepted

This works only for static arrays, defined in the current scope.

All you get in your example is the size of a pointer to float divided by the size of float.

share|improve this answer

Your expectation is wrong. A is a float*, so its size will be sizeof(float*), regardless of how you actually allocate it.

If you had a static array - i.e. float A[100], then this would work.

Since this is C++, use std::array or std::vector.

Worst case, use new[]. Definitely don't use malloc.

share|improve this answer
8  
@Erogol there would be if you took good advice and stop writing C code and labeling it C++. Use vector or array. – Luchian Grigore Jan 27 at 0:30
3  
@Erogol so, wait, do you want to learn C or C++? You do know they're different, right? – Luchian Grigore Jan 27 at 0:34
5  
Epic, epic fail. – DeadMG Jan 27 at 0:35
2  
@Erogol If you tag your question C++, expect C++ answers. – Etienne de Martel Jan 27 at 0:39
3  
@Erogol Stop throwing tantrums like a spoiled stubborn child. You got your answer already. Annoy and insult more people who try to help you even though they don't have to, see how well that goes~ – Cat Plus Plus Jan 27 at 3:04
show 8 more comments

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