C Exercises: Prints all even numbers between 1 and 50
C Basic Declarations and Expressions: Exercise-26 with Solution
Write a C program that prints all even numbers between 1 and 50 (inclusive).
Pictorial Presentation:

C Code:
#include <stdio.h>
int main() {
int i; // Declare variable for loop counter
printf("Even numbers between 1 to 50 (inclusive):\n");
for (i = 1; i <= 50; i++)
{
if(i%2 == 0) // Check if 'i' is even
{
printf("%d ", i); // Print 'i' if it's even
}
}
return 0;
}
Sample Output:
Even numbers between 1 to 50 (inclusive): 2 4 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 42 44 46 48 50
Flowchart:

C Programming Code Editor:
Previous: Write a C program that reads an integer between 1 and 12 and print the month of the year in English.
Next: Write a C program that read 5 numbers and counts the number of positive numbers and negative numbers.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join