#include<stdio.h>
void main()
{
int n, sum;
printf("enter n: ");
scanf("%d", &n);
for(int i = 1; i < n;i++)
{
if(i % 2 == 0)
{
continue;
}
sum = sum + i;
}
printf("sum of odd numbers = %d", sum);
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter