Consider a situation where we need to store five integer numbers. If we use programming's simple variable and data type concepts, then we need five variables of int data type and the program will be as follows −
#include <stdio.h>
main() {
int number1;
int number2;
int number3;
int number4;
int number5;