Tuesday 4 March 2014

programming solutions: SORTING programms

programming solutions: SORTING programms: //BUBBLE SORT USING C PROGRAM #include<stdio.h> int main(){   int s,temp,i,j,a[20];   printf("Enter total numbers of elem...

programming solutions: 10:ARRAY programms

programming solutions: 10:ARRAY programms: // FIND OUT LARGEST NUMBER IN AN ARRAY USING C PROGRAM #include<stdio.h> int main(){   int a[50],size,i,big;   printf("\nE...

programming solutions: Area and volume

programming solutions: Area and volume: //C PROGRAM TO CALCULATE AREA OF A CIRCLE #include <stdio.h> #define PI 3.141 int main(){   float r, a;   printf("Radius:...

programming solutions: Very large numbers

programming solutions: Very large numbers: //Multiplication of large numbers in c #include<stdio.h> #include<math.h> #include<stdlib.h> #include<string.h&g...

programming solutions: Others programs

programming solutions: Others programs: //C program for ATM transactions #include<stdio.h> int totalThousand =1000; int totalFiveFundred =1000; int totalOneHundred =1...

programming solutions: how goto use stament

programming solutions: how goto use stament: what is goto stament in c? how use goto in programm #include<stdio.> #include<conio.h> // who Linux user pleseRemove this i...