ads

Sunday, 28 August 2016

C PROGRAM TO PRINT AN INTEGER

#include <stdio.h>
#include<conio.h>
void main()
{
  int a;
  printf("Enter an integer\n");
  scanf("%d", &a);
  printf("Integer that you have entered is %d\n", a);
  getch();
}

No comments:

Post a Comment