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:
Distinguish Testing vs. Quality Control & Assurance and Audit
Write a C program to find the GCD of two numbers.
Write short notes on:
Write a C program to transpose of a matrix.