C Program to Check the Quadrant of X and Y Coordinates

First, we'll write a function in which we'll create 4 conditions to check whether number lies in the first, second, third or fourth quadrant.
- For first quadrant value of x and y should be greater than 0.
- For the second quadrant value of x should be less than 0 and the value of y should be greater than 0.
- For the third quadrant value of x should be less than 0 and the value of y should be greater than 0.
- For the fourth quadrant value of x should be greater than 0 and the value of y should be less than 0.
Then in the main method, we'll take the value of x and y from the user and pass the value to the function to check in which quadrant value lies.
C Program to Check the Quadrant of X and Y Coordinates
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
// starting a function | |
void Quadrant(int x, int y) | |
{ | |
if( x > 0 && y > 0 ) | |
{ | |
printf("Coordinates lies in 1st quadrant"); | |
} | |
else if( x < 0 && y > 0 ) | |
{ | |
printf("Coordinates lies in 2nd quadrant"); | |
} | |
else if( x < 0 && y < 0 ) | |
{ | |
printf("Coordinates lies in 3rd quadrant"); | |
} | |
else if( x > 0 && y < 0 ) | |
{ | |
printf("Coordinates lies in 4th quadrant"); | |
} | |
} | |
// end of function | |
// start of main method | |
void main() | |
{ | |
int a, b; | |
printf("Enter the value of x coordinate\n"); | |
scanf("%i",&a); | |
printf("Enter the value of y coordinate\n"); | |
scanf("%i",&b); | |
//calling the function | |
Quadrant(a,b); | |
} | |
// end of main method |
You May Also Like:
- Return Multiple Values from a Function.
- Calculator in C.
- C Program to Convert Fahrenheit into Celsius.
Comments
Post a Comment