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: October 29, 2020*/
#include<stdio.h>
#include<conio.h>
main()
{
float tf,tc;
// tf=temperature of city in fahrenit, tc=temperature of city in centigrade//
clrscr();
printf("Enter temperature of city in fahrenit:");
scanf("%f",&tf);
tc=(tf-32.0) * 5.0/9.0;
printf("/ntemperature of city in centigrade=%f",tc);
getch();
return(0);
}
Comments
Post a Comment