Write a C Program to count numbers of vowels and consonants?
C

write a c program to print the Area of a circle?

#define PI 3.14
#include
void main()
{
float r=5.25;
float area;
area = PI*r*r;
printf(“\n Area of a circle = %f”, area);
}

Compile:
Area of a circle = 86.546249
——————————–
Process exited after 0.04764 seconds with return value 30
Press any key to continue . . .

Leave a Reply

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.