Let's get acquainted with the int type, which can store values up to 4 bytes in size!
#include <stdio.h>
#include <stdlib.h>
int main ()
{
int int_var = 12345;
printf ("Our variable of type int is equal %d\n", int_var);
printf ("Size of int type variables is %lld bytes\n\n", sizeof (int));
system ("pause");
return 0;
}