Write a program to fill the entire screen with a smiling face. The smiling face has an ASCII value 1.
Write a program to fill the entire screen with a smiling face. The smiling face has an ASCII value 1.
- Get link
- X
- Other Apps
Author:Priyanshu, Date: November20,2020*/
#include<stdio.h>
#include<conio.h>
main()
{
int num;
clrscr();
printf("Enter the number:");
scanf("%d",&num);
if(num%2==0)
{
printf("Number is even");
}
else
{
printf("Number is odd");
}
getch();
return(0);
}
Comments
Post a Comment