Find the coordinate in which the point (x,y) lies
C program to accept x and y coordinate of a point and find the coordinate in which the point lies.
Coordinate system can be depicted as follows:

Program
Output
Explanation
There are 7 conditions that needs to be checked to determine where does the points lies in the cartesian plane
If at origin then, | x = 0 and y = 0 |
If in first quadrant then, | x > 0 and y > 0 |
If in second quadrant then, | x < 0 and y > 0 |
If in third quadrant then, | x < 0 and y < 0 |
If in fourth quadrant then, | x > 0 and y < 0 |
If in x-axis then, | y = 0 |
If in y-axis then, | x = 0 |