Write a C program to convert Centigrade temp into Farenhite temp.
#include<stdio.h> #include<conio.h> main() { float a,b; printf("\n Enter any C temp"); scanf("%f",&a); b=((9.0*a)/5.0)+32.0; printf("\n The F temp=%f",b); getch(); }
Output:
Write a C- Program To Determine If The Given String Is A Palindrome Or Not.
What is ISO 9000 Certification? How to Get ISO 9000 Certification?
What is Resource management?