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.
Write a C program to calculate the following sum:
Sum = 1-x^2/2!+x^4/4!-x^6/6!+x^8/8!-x^10/10!
What is “Top-Down and Bottom-Up Design” approach?
Define packet switching and circuit switching. What is MANET?
Describe structured analysis and structured design.
Write an program to generate Pascal’s triangle.