We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
#include<stdio.h>#include<stdbool.h>intmax_of_four(inta,intb,intc,intd){while(true){if((a>b&&a>c)&&(a>d)){returna;}elseif((b>a&&b>c)&&(b>d)){returnb;}elseif((c>a&&c>b)&&(c>d)){returnc;}elseif((d>a&&d>b)&&(d>c)){returnd;}}return0;}intmain(){inta,b,c,d;scanf("%d %d %d %d",&a,&b,&c,&d);intans=max_of_four(a,b,c,d);printf("%d",ans);return0;}return0;/* I want to share my solution to this challenge.I used a while loop to compare which letter is greater than the rest.However, I would like to receive some suggestions to see if my solution is really valid or if it can be improved. Thank you very much.*/}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Functions in C
You are viewing a single comment's thread. Return to all comments →