One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| #include<stdio.h> | |
| int main(void){ | |
| float principle = 0.0f; | |
| float time = 0.0f; | |
| float rate = 0.0f; | |
| float si = 0.0f; | |
| printf("please enter the principle amount in :\n"); | |
| scanf("%f", &principle); | |
| printf("please enter the time duration in years ex = 4 / 5.5 etc:\n"); | |
| scanf("%f", &time); |
| // | |
| // Created By Aditya Pandey BCA | |
| // | |
| #include <stdio.h> | |
| void displayArray(int ar[],int size); //declaring array printing function | |
| int main(void) { | |
| int size = 5; //giving size of array | |
| int old[size],new[size],j,i; | |
| printf("Enter numbers in array\n"); |
| #include <stdio.h> | |
| int main(void) | |
| { | |
| int number = 0; | |
| int digit = 0; | |
| int sum = 0; | |
| printf("Enter the five digit number : "); | |
| scanf("%d", &number); |