Title: GtoS Author: ogmamx Pastebin link: http://pastebin.com/errQU0iP First Edit: Saturday 26th of May 2012 04:58:30 PM CDT Last Edit: Saturday 26th of May 2012 04:58:30 PM CDT #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