Imprime o maior valor ao comparar "a", "b" e "c"

main.html
#include <stdio.h>
#include <windows.h>
#include <stdlib.h>
#include <locale.h>

int maior(int x, int y, int z) {
    int max = x;
    if(y > max) {
        max = y;
    }
    if(z > max) {
        max = z;
    }
    return max;
}

void main(void) {
    system("title Imprime o maior valor ao comparar \"a\", \"b\" e \"c\"");
    setlocale(LC_ALL, "ptb");
    HANDLE ptc;
    ptc = GetStdHandle(STD_OUTPUT_HANDLE);
    int a = 7, b = 2, c = 15, x;
    x = maior(a,b,c);
    SetConsoleTextAttribute(ptc, 11);
    printf("\n\nO maior valor é %d\n", x);
} 

Comentários