Created
October 31, 2013 06:24
-
-
Save snadahalli/7245080 to your computer and use it in GitHub Desktop.
C Program to accept two integers for a co-ordinate point and determine its Quadrant.
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
/*********************************************************** | |
* You can use all the programs on www.c-program-example.com | |
* for personal and learning purposes. For permissions to use the | |
* programs for commercial purposes, | |
* contact info@c-program-example.com | |
* To find more C programs, do visit www.c-program-example.com | |
* and browse! | |
* | |
* Happy Coding | |
***********************************************************/ | |
#include<stdio.h> | |
int main() | |
{ | |
int x,y; | |
printf("Enter the values for coordinates x and y\n"); | |
scanf("%d%d",&x,&y); | |
if((x>=0) &&(y>=0)) | |
{ | |
printf("\n The co-ordinate (%d,%d) is in first Quardrant\n",x,y); | |
} | |
else if((x<0) &&(y<0)) | |
{ | |
printf("\n The co-ordinate (%d,%d) is in Third Quardrant\n",x,y); | |
} | |
else if((x>0) &&(y<0)) | |
{ | |
printf("\n The co-ordinate (%d,%d) is in Fourth Quardrant\n",x,y); | |
} | |
else { | |
printf("\n The co-ordinate (%d,%d) is in Second Quardrant\n",x,y); | |
} | |
return 0; | |
} | |
/* Author: Sandeepa Nadahalli */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment