C program to demonstrate printf.

#include<stdio.h>
#include<conio.h>
void main()
{
 clrscr();
 int num;
 printf("Enter number : ");
 scanf("%d",&num);
 printf("You entered %d",num);
 getch();
}
C program to demonstrate printf. C program to demonstrate printf. Reviewed by on December 22, 2019 Rating: 5

No comments:

Powered by Blogger.