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:Knowledge desk, Date: November20,2020*/
#include<stdio.h>
#include<conio.h>
main()
{
int num;
clrscr();
printf("Enter the number:");
scanf("%d",&num);
if(num<0)
{
printf("Absolute number= %d",-num);
}
else
{
printf("Number is already absolute:");
}
getch();
return(0);
}
Comments
Post a Comment