Home
About Us
Privacy Policy
Contact Us
Tech n Facts
"Know Hacking! But No Hacking!"
Tux Education
Our New Education Channel Please Share And Subscribe It...
Navigation
Technology
Inventions
Gadgets
Reports
Updates
Facts
Android
Apps
Games
Updates
Windows
Tricks
Updates
Reports
Hacking
Tricks
Phishing
Education
BCA Stuff
C Programming
Books
Extra Stuff
VIT
Data Structure
Java
Computer Architecture
My Hackathon Project
Home
»
C
»
/* Find Area Of Circle */
/* Find Area Of Circle */
in
C
- on 11:38:00 AM -
No comments
// Compiler : Dev-C++ 4.9.9.2
#include<stdio.h>
#define PI 3.141
int main()
{
float r, a;
printf("Radius: ");
scanf("%f", &r);
a = PI * r * r;
printf("%f\n", a);
getch();
return 0;
}
Tweet
Post a Comment
Newer Post
Older Post
Home
Social Media
Post a Comment