/*DEVELOP A PROGRAM TO FIND THE NUMBER OF AND SUM OF ALL INTEGERS
 GREATER THAN 100 AND LESS THAN 200 THAT ARE DIVISIBLE BY 7 */
#include<stdio.h>
main()
{
    int sum=0,count=0,l,i;
   
    for(i=100;i<200;i++)
    {
        if(i>100&&i<200&&i%7==0)
        {
          
The content has been moved to our permanent website: www.programminghelp.in.
You will be redirected shortly.

Saturday, May 14, 2011

number and sum,divisible by 7,between 100 and 200,c,programm,lab,record,first semester

/*DEVELOP A PROGRAM TO FIND THE NUMBER OF AND SUM OF ALL INTEGERS
 GREATER THAN 100 AND LESS THAN 200 THAT ARE DIVISIBLE BY 7 */
#include<stdio.h>
main()
{
    int sum=0,count=0,l,i;
   
    for(i=100;i<200;i++)
    {
        if(i>100&&i<200&&i%7==0)
        {
          
The content has been moved to our permanent website: www.programminghelp.in.
You will be redirected shortly.