13. Write a C program to find maximum between two numbers. Solution :- #include<stdio.h> #include<conio.h> void main() { clrscr(); int a,b; printf("Enter the First number :-"); scanf("%d",&a); printf("Enter the Second number :- "); scanf("%d",&b); if (a>b) { printf("%d The First number is big "); } else { printf("%d The Second number is big "); } getch(); } Output :-
All computer course for class 9th to 12th with proper practical and theory .........