Posts

Showing posts from January, 2022

C programme to Find the radius of Circle

 #include <stdio.h> #include <stdlib.h> int main() {     float R;     printf("Enter the Value of Radius: ",R);     scanf("%f",&R);     printf("The Area of the Circle is: %f", 22*R*R/7);     return 0; }

C Programme to find Area Of Rectangle

#include <stdio.h> #include <stdlib.h> int main() {       int Len, Bre;      printf("Enter the Length: ",Len);      scanf("%d/n",&Len);       printf("Enter the Breadth: ",Bre);      scanf("%d/n",&Bre);       printf("Area Of the Rectangle is: %d",Len*Bre);     return 0; }