1. Write a C program to enter two numbers and find their sum. Solution :- #include<stdio.h> #include<conio.h> void main() { clrscr(); int a,b,add; printf("Enter the first number :-"); scanf("%d",&a); printf("Enter the Second number:- "); scanf("%d",&b); add = a+b; printf("The Sum of two number is :- %d",add); getch(); } Output :-
All computer course for class 9th to 12th with proper practical and theory .........