//C program to check 
//Maximum and Minimum
//Between two numbers
// without any condition or loop

#include <stdio.h>
#include<stdlib.h>


int main() 
{
    int a=90 ,b=67;
    
    //returning maximum among two numbers
    printf("max=%d\n",((a+b)+abs(a-b))/2);
   //returning minimum among two numbers
    printf("min=%d\n",((a+b)-abs(a-b))/2); 
    
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: