← Back to C Course | Chapter 1: Introduction & Basics | Lesson 11 of 21

C Numeric Data Types

C provides several integer types (short, int, long, long long) and floating-point types (float, double), each with a different range or precision, chosen based on what kind of number needs to be stored.

Integer Types

C provides several integer types -- short, int, long, and long long -- each offering a different range of whole numbers, with int being the standard default choice for most everyday counting and arithmetic.

Example: Integer Types

c
#include <stdio.h>
int main() {
	short s = 10;
	int i = 1000;
	long l = 100000L;
	long long ll = 10000000000LL;
	printf("%hd %d %ld %lld", s, i, l, ll);
	return 0;
}

Floating-Point Types

Floating-point types, float and double, store numbers with a fractional part, with double offering roughly twice the precision of float at the cost of using more memory.

Example: Floating-Point Types

c
#include <stdio.h>
int main() {
	float f = 3.14f;
	double d = 3.14159265358979;
	printf("%.2f %.11f", f, d);
	return 0;
}

Choosing int vs float vs double

Choosing between int, float, and double comes down to whether a value is always a whole number, needs decimal precision with limited memory use, or needs the higher precision double provides for most general decimal math.

Example: Choosing int vs float vs double

c
#include <stdio.h>
int main() {
	int quantity = 3;
	double price = 19.99;
	printf("Total: %.2f", quantity * price);
	return 0;
}

Number Ranges and Overflow

Every numeric type has a fixed range of representable values, and exceeding that range causes overflow, where the value silently wraps around to an unexpected result instead of raising an error.

Example: Number Ranges and Overflow

c
#include <stdio.h>
int main() {
	int maxVal = 2147483647;
	maxVal = maxVal + 1;
	printf("%d", maxVal);
	return 0;
}

Numeric Literals

Numeric literals can be written in decimal, hexadecimal (with a 0x prefix), or octal (with a leading 0) form, and suffixes like L, U, or F tell the compiler which specific type to treat the literal as.

Example: Numeric Literals

c
#include <stdio.h>
int main() {
	int decimal = 100;
	int hex = 0x64;
	int octal = 0144;
	printf("%d %d %d", decimal, hex, octal);
	return 0;
}

Login to run this code

C/C++/Java/PHP execution requires a free account. Your code is saved — you'll land right back in the editor after logging in.