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 multiplication of two matrix.
Write a C program to find factorial(using recursion) of any no.
Write a C program to print pattern below:
** ** * ** * * *
Write a C program to convert decimal no. to binary.
Copyright © 2025 MindStudy
A product by Shunya Intelliware Solution (Registered under MSME Uddyam)