Skip to main content

Area of circle and use of #define

 To calculate the area and circumference of a circle with given radius. Get to know the '#define' directive.

The code:
--------------------------------------------
#include<stdio.h>
#define PI 3.14159       //defining PI value
main()
{
    float R,C,A;
    printf("Give the radius of circle \nR= ");
      scanf("%f",&R);    //scanning radius
    C=2*PI*R;       //calculating circumference
    A=PI*R*R;       //calculating area
    printf("Circumference=%f    Area=%f\n",C,A);
}
---------------------------------------------

     First of all compile and run this program and see it works. Now notice that in the very second line of code I wrote a statement "#define PI 3.14159" and further in the formulas for calculating area and the circumference in stead of writing value of pi(that is approx. 3.14159) I have used PI word. What are you thinking......? Yeah you are right its just like when you use the word LOL while chatting with your friends and ask them to interpret it as 'Laughing out loud'...". After that your friends will understand what you mean whenever you say 'LOL' in chat.
    As you will be using #define more in your programs, you will come to know that 
1. you cannot change the previously defined value.
2. Its a 'preprocessor directive'. Don't worry about this new term. You will come to know about it in detail later.

Comments

Popular posts from this blog

Recursive program to insert a star between pair of identical characters

Given a string with repeated characters, we have to insert a star i.e. ” * “  between pair of adjacent identical characters using recursion. Examples: Input : aabb Output : a*ab*b Input : xxxy Output : x*x*xy Recommended: Please try your approach on  {IDE}  first, before moving on to the solution. Approach: If there is an empty string then simply return. This forms our  base condition . Else we do the following- Check if the first two characters are identical. If yes, then insert ” * ” between them. As we have now checked for identical characters at first two positions of the string so we now make a recursive call  without the first character of the string . The above approach has been implemented below: C filter_none edit play_arrow brightness_4 // Recursive CPP program to insert * between // two consecutive same characters. #include <iostream> using namespace std;     // Funct...

Count the number of objects using Static member function

Write a program to design a class having static member function named showcount() which has the property of displaying the number of objects created of the class. Explanation:  In this program we are simply explaining the approach of static member function. We can define class members and member functions as static using static keyword. Before understanding static member function, we must understand static member. When we declare a member of a class as static it means no matter how many objects of the class are created, there is  only one copy of the static member . Important points about Static : A static member is shared by all objects of the class, all static data is initialized to zero when the first object is created, if no other initialization is present. A static member function can only access static data member, other static member functions and any other functions from outside the class. By declaring a function member as static, we make it independent of any ...

C program to evaluate the net salary of an employee given the following constraints

Given the following constrains and we have to calculate net salary of an employee. Basic salary  : $ 12000 DA  : 12% of Basic salary HRA  : $150 TA  : $120 Others  : $450 Tax cuts  – a) PF :14% of Basic salary and b) IT: 15% of Basic salary Net Salary  = Basic Salary + DA + HRA + TA + Others – (PF + IT) Consider the program: # include < stdio.h > //main program int main ( ) { //variable to store values float basic , da , hra , ta , others ; float pf , it ; float net_salary ; //input required fields printf ( " Enter Basic Salary ($): " ) ; scanf ( " %f " , & basic ) ; printf ( " Enter HRA ($): " ) ; scanf ( " %f " , & hra ) ; printf ( " Enter TA ($): " ) ; scanf ( " %f " , & ta ) ; printf ( " Enter others ($): " ) ; scanf ( " %f " , & others ) ; //calculate DA 12% of Basic Salary da = ( basic * 12 ) / 100 ; //calculate PF 1...