Program to find Curved Surface Area of Cylinder in C LANGUAGE.
Hello guys! Welcome to this Blog.
Today you'll be going through the journey of Coding in C LANGUAGE.
To run this program you'll need TURBO Software if you have computer or laptop.
If you have mobile phone (Android or Ios) you can download any compiler app from Play store or App Store.
Just Copy this code and enjoy your program.
If you want more and simple programs like this then comment below and share it your friends, so that they can also make their own program. Follow me now.
Copy and Paste this code in your compiler.
#include <stdio.h>
int main()
{
int r, h, SA;
printf("Enter radius, height:");
scanf("%d %d", &r, &h);
SA = 2*3.14*r*h;
printf("The curved surface area of cylinder is: %d ", SA);
return 0;
}
Thanks for reading. Follow me now.
Post a Comment
Comment your queries below.