Table of Contents

The C built-in data types are int , char , short , long , float , double , long double . Let's find out more about those. Integer numbers C provides us the following types to define integer values: char int short long Most of the times, you'll likely use an int to store an integer. ................
................