Posts
 
Reputation
Joined
Last Seen
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
1 Commented Post
0 Endorsements
Ranked #55.0K
~433 People Reached
Favorite Forums
Favorite Tags
c x 3

3 Posted Topics

Member Avatar for kbkorlahalli

[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); } …

Member Avatar for hiraksarkardg
0
123
Member Avatar for wussa
Member Avatar for coolkeg

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 …

Member Avatar for Aia
0
144

The End.