Simulator
EXPERIMENT : WAP to print sum of even and odd numbers from 1 to N

WAP to print sum of even and odd numbers from 1 to N

This Simulator works for a C program to find the sum of Odd and Even numbers from 1 to N.

Program

 
     #include <stdio.h> 

         void main()
        	{
            int i, num, odd_sum = 0, even_sum = 0;
        
            printf("Enter the value of num\n");

            scanf("%d", &num);
            for (i = 1; i <= num; i++)
            {
                if (i % 2 == 0)
                    even_sum = even_sum + i;
                else
                    odd_sum = odd_sum + i;
            }
          printf("Sum of all odd numbers  = %d\n", odd_sum);
         printf("Sum of all even numbers = %d\n", even_sum);
          }
      

Output


ODD

ODD SUM



EVEN

EVEN SUM