#include #include   //This program will read 3 numbers, and print from greatest to smallest void main (void){    int a,b,c;    clrscr();    printf("\nGive me the first number: ");    scanf("%d", &a);    printf("\nGive me the second number: ");    scanf("%d", &b);    printf("\nGive me the third number: ");    scanf("%d", &c);    clrscr();    if (a