Source Code Heaven
Get Your Source Codes
1. Write a program to read two numbers and find sum
2. Write a program to find the area and circumference of a Circle float radius,area,circum; clrscr(); printf("Enter the Radius : "); scanf("%f",&radius); area=3.14*r*r; circum=2*3.14*r; printf("Area=%f\n",area); printf("Circumference=%f",circum); }3. Write a program to read two numbers and do all the arithmetic operations on it. 4. Write a program to read numbers into two variables and interchange their values using a third variable. 5. Write a program to read numbers into two variables and interchange their values without using a third variable. |
Thanks For Visiting!
