Skip to main content

Posts

Featured

Program to Find Area of Circle in C

#include<stdio.h> #include<conio.h> #include<stdlib.h> #define pi 3.14 using namespace std; int main() {     int r;     float area;     system("cls");     printf("Enter Your Radius :: ");     scanf("%d",&r);     area=pi*r*r;     printf("Area of Circle is %f",area);     getch();     return 0; } Output ::  You Can Download This Program From Here Download Executable From Here

Latest posts

Program To Find Minimum of the given two number in C++

Program to Convert the given centigrade to Fahrenheit in C++

Program to Convert the given meters into centimeters in C++

#18 C++ Pattern

#17 C++ Pattern

#16 C++ Pattern

#15 C++ Pattern

#14 C++ Pattern

#13 C++ Pattern

#12 C++ Pattern