Basic Data Types in C - C Reference

C examples for Reference:Language Reference

Introduction

Basic Data Type Size in BitsRange of Values
char 8 -128 to 127
int 16 -32,768 to 32,767
float 32 -3.4e-38 to -3.4e+38, 0, 3.4e-38 to 3.4e+38
double64 -1.7e-307 to -1.7e+308, 0, 1.7e-307 to 1.7e+308

Related Tutorials