A program that read & display an integer number(2) in C.

#include<stdio.h>
#include<conio.h>

void main()
{
    int n;
    clrscr();
    printf("Enter any integer number : ");
    scanf("%d",&n);
    printf("The number you have given is : ");
    printf("%d",n);
    getch();
}



////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........