This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: 128-bit interger


Hi Anbu,

Not all platforms support 128-bit integers.

What platform?

You can test your platform via:
#include <iostream>
using namespace std;
int main() {
    cout << (sizeof(long long) * 8) << endl;
}

--Eljay

On 10/25/02 3:41 PM, "Anbu Suvackin" <asuvacki@cisco.com> wrote:

> Hi,
> 
> I have a 64-bit integer type variable that needs to be extended to
> 128-bit. Is there any support for 128-bit integer type variable in GNU C
> compiler?
> 
> Thanks
> anbu


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]