Introduction
Write C program to find sum of odd numbers between 1 to n
Write C program to find sum of odd numbers between 1 to n
#include <stdio.h>
int main()
{
int i, num, sum=0;
// Reading number
printf("Enter any number: ");
scanf("%d", &num);
for(i=1; i<=num; i+=2)
{
//Adding current odd number to sum variable
sum += i;
}
printf("Sum of all odd number between 1 to %d: %d", num, sum);
return 0;
}
Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …
C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …