Recent content by pramod

  1. P

    pc

    C programming 2 1./*To take a set if numbers form the user & print them in row & then the largest & the smallest value in the list*/ main() { int number[10],i,j,l3,s; clrscr(); for(i=0;i<10;i++) { printf(" Enter the list of any 10 number:",i+1); scanf("%d",&number[i]); } for(j=0;j<10;j++) {...
  2. P

    pc

    C programming 1. /*To find sum,difference,product,quotient*/ main() { float a,b,sum,difference,product,quotient; printf("<Enter the value 1:"); scanf("%f",&a); printf("<Enter the value 2:"); scanf("%f",&b); sum=a+b; printf("Sum=%f",sum); difference=a-b; printf("\nDifference=%f",difference)...
Back
Top