Skip to main content

C Program to Print Odd Numbers from 1 to n using for Loop

In this easy coded program, you will learn how to print odd numbers from 1 to 'n' using for loop. Here, 'n' is the number up to which the user wants the odd numbers to be printed.

C Program to Print Odd Numbers from 1 to n using for Loop

---------------------------------------------------------------------------

Program to Print Odd Numbers from 1 to n using for Loop

/*Odd Numbers from 1 to n- for Loop*/

#include<stdio.h>

void main()
{
    int i, num;

    printf("Enter Number: ");
    scanf("%d", &num);

    for(i=1; i<=num; i+=2)
        printf("%d\t", i);
}
 

Output

Enter Number: 8
1       3       5       7 
---------------------------------------------------------------------------

Hope you found this 'C Program to Print Odd Numbers from 1 to n using for Loop' easy, simple and helpful!

Try to solve more queries by yourself by referring more examples from BEGINC. Here you will get the most easiest code to each and every query. Keep practicing. More programs are coming.




Comments