Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
UppHub
Status & Roadmap
FAQ
Authors & License
Forums
Funding U++
Search on this site











SourceForge.net Logo

SourceForge.net Logo

GitHub Logo

Discord Logo

Primitive Data Types


 

U++ Core defines several primitive data types. Below is the complete list along with a brief description.

 

byte

The byte is a 8-bit (byte) unsigned integer.

 


 

int8

The int8 is a 8-bit signed integer.

 


 

uint8

The int8 is a 8-bit unsigned integer.

 


 

word

The word is a 16-bit unsigned integer.

 


 

int16

The int16 is a 16-bit signed integer.

 


 

uint16

The uint16 is a 16-bit unsigned integer.

 


 

dword

The dword (double word) is a 32-bit unsigned integer.

 


 

int32

The int32 is a 32-bit signed integer.

 


 

uint32

The uint32 is a 32-bit unsigned integer.

 


 

wchar

Wide character.

 


 

int64

The int64 is a 64-bit signed integer.

 


 

uint64

The uint64 is a 64-bit unsigned integer.

 


 

qword

The qword (quad word) is a 64-bit unsigned integer.

 

 

Do you want to contribute?