No. In C and C++, data types are platform specific. In general, this will mean:
But for other systems, the general specification is that int has the natural size suggested by the system architecture (one "word") and the four integer types char, short, int and long must each one be at least as large as the one preceding it, with char being always one byte in size. The same applies to the floating point types float, double and long double, where each one must provide at least as much precision as the preceding one.
(Taken from Data Types)
On many platforms, float and int are both often 32bit, but this isn't always the case, nor is it part of the actual specification.
sizeof(*ptr)should be used instead ofsizeof(int)anyway. – netcoder Aug 6 '12 at 17:36ILP64, where int is 8 bytes but float is still 4 bytes. There are also 16 bit platforms where int is 2 bytes and float is still 4 bytes. – Paul R Aug 6 '12 at 17:38longat 64 bits andintat 32 bits, but that's just because it's convenient, not because of some technical restriction. – zneak Aug 6 '12 at 17:51