×

Int in C

The keyword int in C programming stands for integer and it is a data type which is used for variable declarations or declaration of functions of different types. Similar to every other programming language, the C programming language also comes with types which are in-built to differentiate between various data (It can be either input or output or intermediate).

Int or Integer is a data type which is quoted as usual in every programming language. By usual we mean common data type. It is quoted as usual because of its wide usage or application in scientific computing or general programming.

In mathematical terms, an Integer can be defined as a number which lacks any fractional component (No decimal terms, simply the floor values). The numbers which consist of decimal terms or consist of a fractional component are of type float and are termed as floating-point numbers. The floating-point numbers can represent numbers more accurately and it's a fact that they are more precise, but the integer type are still used and occupy a separate place because of the following reasons:

  • The space occupied by Integers is significantly less as compared to the space occupied by the floating-point numbers.
  • Due to the hardware architecture, the Calculations performed using integers are much faster (They are as fast as twice or over 2 times).

In the C programming language, the integer type or the data of type integer is represented using the notation int. The various types or various variants of int are stated below.

  • int
  • long
  • short
  • long long

These types are differentiated based on the memory occupied by them. Each variant of int consumes different memory and it is discussed below using a tabular representation.

Variants of integer OR Integer Types in C

In order to understand the various integer types in C, it is important to look at the storage sizes of them and their value ranges. The following table provides these details in clear and concise manner.

Integer TypeSize (Storage size)Range (Value range)
int2 or 4 bytes-32,768 to 32,767 or -2,147,483,648 to 2,147,483,647
unsigned int2 or 4 bytes0 to 65,535 or 0 to 4,294,967,295
short2 bytes-32,768 to 32,767
unsigned short2 bytes0 to 65,535
long8 bytes or (4bytes for 32 bit OS)-9223372036854775808 to 9223372036854775807
unsigned long8 bytes0 to 18446744073709551615
char1 byte-128 to 127 or 0 to 255
unsigned char1 byte0 to 255
signed char1 byte-128 to 127
  • The size of signed and unsigned versions will be the same.
  • The size of int is equal to four bytes (4 bytes).
  • The size of short is less than or equal to the size of int.
  • The size of int is less than or equal to the size of long.
  • Hence, the size of long will be less than or equal to the size of long long.

Example :

#include <stdio.h> //header files


int main()
{
   int age;  // local variable of type int


   age = 25; // value of declared variable set to ‘25’
   printf("The entered value in variable age is %d .\n", age);


   return 0;
}

Program 1 : Program to find the size of Int

#include <stdio.h> //header files
int main()
{
 int IntType; // local variable of type int
 printf("The size of int is: %ld\n", sizeof(IntType)); //prints the size of int
	return 0;
}

Program 2: Program to calculate the Sum and product of two numbers

#include<stdio.h>  //header files
#include<conio.h>


void main( )
{
  
 int num1, num2, sum, product;  // local variables of type int
  
  printf("Enter the first number: ");


  scanf("%d",&num1);       
  
  printf("Enter the second number: ");


  scanf("%d",&num2);


   sum = num1+num2;    //calculating the sum of two numbers


   product = num1*num2;  //calculating the product of two numbers


  printf("The Sum of two numbers = %d",sum);


  printf("\n The Product of two numbers = %d",product);
  getch( );
}

Program 3: Program to generate the Floor value of average of two numbers

#include <stdio.h>
int main()
{
int num1, num2;    //declaring the integer type variables
int average;        //declaring the int type variables
 printf("Enter the first number: ");
 scanf("%d",&num1);
 printf("Enter the second number: ");
 scanf("%d",&num2);
 average = (int) (num1+num2) / 2; //calculates the average of two numbers
printf("Average of %d and %d is: %d",num1,num2,average);      
    return 0;
}

Conclusion

The keyword int in C programming stands for integer and it is a data type which is used for variable declarations or declaration of functions of different types. Similar to every other programming language, the C programming language also comes with types which are in-built to differentiate between various data (It can be either input or output or intermediate).

In the C programming language, the integer type or the data of type integer is represented using the notation int. The various types or various variants of int are stated below.

  • int
  • long
  • short
  • long long

The type float or the floating point numbers can represent numbers more accurately and it's a fact that they are more precise, but the integer type are still used and occupy a separate place because:

  1. The space occupied by Integers is significantly less as compared to the space occupied by the floating-point numbers.
  2. Due to the hardware architecture, the calculations performed using integers are much faster (They are as fast as twice or over 2 times).

Related Topics

gets() function in C

gets() is a pre-define or built-in function present in the stdio.h header file. stdio stands for standard input and output. gets() function is used to read a stream and store...

4 minutes read.

Multi-dimensional Arrays in C

Multi-dimensional Arrays in C The C programming allows the concept of multi-dimensional arrays. The data within the multidimensional arrays are stored in the tabular form, that is, in a row significant...

3 minutes read.

One Dimensional Array in C

One Dimensional Array in C: In the C programming language, an array is defined as a collection of one or more values of the same type. Every value present in...

4 minutes read.

Recursion in C

Recursion in C: In the C programming language, the concept known as recursion exists that is a technique in which a function calls itself either directly or indirectly. It allows...

4 minutes read.

LCM of two numbers in C

LCM is a mathematical term which stands for Least Common Multiple. LCM of any two numbers is the smallest positive value(number) which is evenly divisible by the two given numbers. Consider...

4 minutes read.

Command line arguments in C

Command line arguments in C The arguments that are generally passed from the line of command are referred to as command line arguments. These command line arguments are always handled by...

3 minutes read.

Continue in C

C language: C language is a procedure oriented programming language. We can say that it is a platform dependent language. C language is introduced by Dennis Ritchie in the year 1970. We...

2 minutes read.

Local Labels in C

Anyone who has written programs in the C programming language is required to be familiar with the "go to" and "labels" used in C to navigate between functions. "Local labels"...

4 minutes read.

Find median of 1D array using function in C

Introduction: Here, we discuss how we can find the median of a 1D array using a function in C. The median is the value in the middle of the sorted...

3 minutes read.

Difference between Array and List in C

C# Array vs List is where the abstraction and implementation of human computing meet.  Arrays are incredibly related to the hardware concept of contiguous and contiguous memory, where each part is...

3 minutes read.

Bubble sort in C

Bubble sort in C Bubble sort is defined as the algorithm that is used for the sorting mechanism. It follows the technique of replacing the first index with the more minor...

4 minutes read.

getch() function in C

getch() is a pre-define or built-in function present in the conio.h library. It returns the given character immediately without waiting for the enter key to be entered. By using getch()...

3 minutes read.

Write a program that produces different results in C and C++

In this tutorial, we'll explore several programs that, depending on whether they are developed using C or C++ compilers, will produce varying outputs. There are numerous similar programs, but we will just...

2 minutes read.

Built-in functions in C

The function is a set of instructions and statements enclosed in the "{}" delimiter. In c, there are two types of functions. Pre-define functions/ Built-in functionsUser define function. Built-in functions in C:- These...

8 minutes read.

tolower() Function in C

The tolower() capability is characterized in the ctype.h header document. In the event that the person passed is a capitalized letter set, the tolower() capability switches capitalized letters in order...

3 minutes read.

Projects on C language in 2024

Introduction Most aspiring programmers learn the C language as their first high-level programming language. The most flexible language utilized in every industry is, without a doubt, C. Even after 50 years...

9 minutes read.

C Programming Tutorial

What is C Programming C is most popular and widely used computer programming language. It was developed by Dennis Ritchie in 1972 at the Bell Lab. It is used to develop system application software. There...

8 minutes read.

Matrix Multiplication in C

Matrix Multiplication in C Matrix multiplication in C: Two matrices can be added, subtracted, multiplied, and divided. To do so, we take input from the consumer for row number, column number, first element matrix,...

3 minutes read.

How to convert a string to hexadecimal in C

Converting a character array or any string to its respective hexadecimal form is simple. The only thing we have to do is to follow the below steps. Take each character from...

3 minutes read.

Factorial Program in C using For Loop

Before move on the factorial program. We have to know about the for loop in C programming language. The syntax of the For Loop is: for (initialization statement; test expression; an increment...

3 minutes read.