jituTechnology

jituTechnology

write a program to find the sum of series 1/1 + ½ + 1/3 + 1/n+….

Here is the c source code/program for: write a program to find the sum of series 1/1 + ½ + 1/3 + 1/n+…. /*program to find the sum of series.*/ #include <stdio.h> #include <conio.h> void main () {      float i,n;    float sum =0;    printf (“enter the terms = “);    scanf (“%f”,&n); […]

read more

write a program to find the sum of first n odd integers.

Here is the c source code/program for: write a program to find the sum of first n odd integers. /* write a program to add first seven series using for loop programmed by: Name: Jitendra kumar Yadav Roll: 16 Date: 12 feb 2011 */ #include <stdio.h> #include <conio.h> void main() {      int sum=0;    […]

read more

write a program to print first 10 terms of the following series using for loop. 1 5 9 13 …..

Here is the c source code/program for: write a program to print first 10 terms of the following series using for loop. 1 5 9 13 ….. /* write a program to add first seven series using for loop programmed by: Name: Jitendra kumar Yadav Roll: 16 Date: 12 feb 2011 */ #include <stdio.h> #include […]

read more

Write a program to add first seven terms of the following series using loop 1/1!+2/2!+3/3!+…

Here is the c source code/program for: Write a program to add first seven terms of the following series using loop 1/1!+2/2!+3/3!+… /* write a program to add first seven series using for loop programmed by: Name: Jitendra kumar Yadav Roll: 16 Date: 12 feb 2011 */ #include <stdio.h> #include <conio.h> void main() {      […]

read more

Write a program to find the number of sum of all integer greater than 100 and less than 200 that are divisible by 7.

Here is the c source code/program for: Write a program to find the number of sum of all integer greater than 100 and less than 200 that are divisible by 7. /* a program to find the sum of all integer greater than 100 and less than 200 that are divisble by 7 programmed by: […]

read more