Write a C program to find the maximum number from 3 numbers.

#include<stdio.h> #include<conio.h> int main(); {         int a,b,c;            clrscr();            printf(“Enter value of A:”);            scanf(“%d”,&a);      ...