Advertisement Area

Program #15: To Find Area & Circumference of Circle

C Language

#include<stdio.h>
#include<conio.h>
void main() 
{
    float r,a,c;
    clrscr();
    printf("Enter radius");
    scanf("%f",&r)
    a=3.14*r*r;
    c=2*3.14*r;
    printf("Area=%f\n",a);
    printf("Circumference = %f",c);
    getch();
}

/*OUTPUT*/
Enter radius 2.0
Area= 12.560000
Circumference = 12.560000

  1. To Find the Sum of Two Numbers
  2. To Find Multiplication of 3 Numbers
  3. To Find Area of Rectangle
  4. To Find Square of Number
  5. To Find Cube of Number
  6. To Find Area of Circle
  7. To Find Simple Interest
  8. To Find Square Root of Number
  9. To Convert the Time
  10. To Swap Two Numbers
  11. To Swap Two Numbers Without Using 3rd Variable
  12. To Find Average of 5 Numbers
  13. To Calculate Perimeter & Area of Rectangle
  14. To Find Volume of Box
  15. To Find Area & Circumference of Circle
  16. To Find Total Marks & Percentage of Student in 5 Subjects
  17. To Convert Temperature From Fahrenheit to Celcius
  18. To Perform All Arithmetic Operations on Two Numbers
  19. Program Showing Use of \n
  20. Program Showing Use of \t
  21. Use getchar() Function
  22. Use getche() Function
  23. Use getch() Function
  24. Use putchar() Function
  25. Program using puts
  26. Program using gets
  27. Program using printf() Function
  28. Program using nested printf() Function
  29. Program using scanf() Function
  30. Program using integer formatting
  31. Program having floating point number formatting
  32. Program to perform all arithmetic operations on two numbers
  33. Program to find greatest among 2 no.'s using conditional operator
  34. Program to check number is odd or even using conditional operator
  35. Program using type casting or explicit type conversion
  36. To print ASCII code of any number between 0 to 255
  37. To Find Square Root of Number
  38. To Check Year is Leap or Not
  39. To Check Whether Shopkeeper is in Profit or Loss
  40. To Check Alphabet is Vowel or Consonant
  41. To Convert Upper Case into Lower Case or vice-versa
  42. To Find Greatest Among 3 Numbers
  43. To Check Entered Character is Uppercase, Lowercase, Digit or Special Symbol
  44. To Check in Which Quardent Point Lies
  45. To Check Number is Divisible by 3 and 6
  46. To Find a Greater Number
  47. Find Greatest Among 3 Numbers using Conditional Operators
  48. To Print 1st n-Natural Numbers using While Loop
  49. To Print 1st 10 Even Numbers using While Loop
  50. To Find Sum of Digits of a Number
  51. To Find Reverse of Number
  52. To Find Sum of First and Fourth Digit in a Four Digit Number
  53. To Print 1st 100 Even Numbers using Do-While Loop
  54. To Find HCF of Two Numbers
  55. To Print 1st n-Natural Numbers using For Loop
  56. To Find Factorial of Number
  57. To Print Following Series 1, 10, 100, 1000, 10000
  58. To Find Average of 1st n-Natural Numbers
  59. To Print Following Pattern 1 11 111
  60. To print following Pattern 1 12 123 1234 and so on
Advertisement Area