क्षेत्रफल एक मात्रा है जो दो आयामों में आकृति की सीमा का प्रतिनिधित्व करती है। एक वृत्त का क्षेत्रफल दो आयामी समतल में वृत्त द्वारा कवर किया गया क्षेत्र है।
वृत्त का क्षेत्रफल ज्ञात करने के लिए, त्रिज्या[r] या व्यास[d](2* त्रिज्या) की आवश्यकता होती है।
क्षेत्रफल की गणना के लिए प्रयुक्त सूत्र है (π*r 2 ) या {(π*d 2 )/4}.
उदाहरण कोड
त्रिज्या का उपयोग करके वृत्त का क्षेत्रफल ज्ञात करने के लिए।
#include <stdio.h> int main(void) { float pie = 3.14; int radius = 6; printf("The radius of the circle is %d \n" , radius); float area = (float)(pie* radius * radius); printf("The area of the given circle is %f", area); return 0; }
आउटपुट
The radius of the circle is 6 The area of the given circle is 113.040001
उदाहरण कोड
math.h पुस्तकालय का उपयोग करके त्रिज्या का उपयोग करके एक वृत्त का क्षेत्रफल ज्ञात करना। यह दी गई संख्या का वर्ग ज्ञात करने के लिए गणित वर्ग के पाउ फ़ंक्शन का उपयोग करता है।
#include <stdio.h> int main(void) { float pie = 3.14; int radius = 6; printf("The radius of the circle is %d \n" , radius); float area = (float)(pie* (pow(radius,2))); printf("The area of the given circle is %f", area); return 0; }
आउटपुट
The radius of the circle is 6 The area of the given circle is 113.040001
उदाहरण कोड
व्यास का उपयोग करके वृत्त का क्षेत्रफल ज्ञात करने के लिए।
#include <stdio.h> int main(void) { float pie = 3.14; int Diameter = 12; printf("The Diameter of the circle is %d \n" , Diameter); float area = (float)((pie* Diameter * Diameter)/4); printf("The area of the given circle is %f", area); return 0; }
आउटपुट
The Diameter of the circle is 12 The area of the given circle is 113.040001