Joined
Last Seen
-1 Reputation Points
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
0 Endorsements
Ranked #55.0K
3 Posted Topics
[code] /*Program to find the greatest of three numbers*/ #include<stdio.h> #include<conio.h> int main() { int x,y,z; clrscr(); printf("Enter the three numbers"); scanf("%d%d%d",&x,&y,&z); if(x>y) { if(y>z) printf("Greatest number is %d",x); else if(z>x) printf("Greatest number is %d",z); } else { if(x>z) printf("Greatest number is %d",y); else if(z>y) printf("Greatest number is %d",z); } …
you are not able to print the sorted numbers right?
hi guys, I'm new to C language and am currently using an online tutorial, ive been doing prety well on my own until now. Basicly the problem is with the "while" command, when i copy and paste the code im working with from the tutorial site into a word pad …
The End.
paragt