Write A C Program To Accept A Coordinate Point
Write A C Program To Accept A Coordinate Point
#include <stdio.h>
void main()
{
int x,y;
} /* End of main() */
/*---------------------------------------------
Output
RUN 1
Enter the values for X and Y
3 5
point (5,3) lies in the First quandrant
RUN 2
Enter the values for X and Y
-4
-7
point (-7, -4) lies in the Third quandrant
---------------------------------------------*/