- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to print a one-month calendar of user choice using for loop in C?
The logic to print a one-month calendar is as follows −
for(i=1;i<first;i++) printf(" "); for(i=1;i<=noofdays;i++){ printf("%3d",i); if((first+i-1)%7==0) printf("
"); }
Example
Following example accepts number of days and first day in a month from the user and prints the calendar of a month accordingly −
#include<stdio.h> int main(){ int i,noofdays; int first; printf("enter no of days in a month:
"); scanf("%d",&noofdays); printf("enter first day in a month:
"); scanf("%d",&first); for(i=1;i<first;i++) printf(" "); for(i=1;i<=noofdays;i++){ printf("%3d",i); if((first+i-1)%7==0) printf("
"); } return 0; }
Output
enter no of days in a month: 30 enter first day in a month: 4 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
- Related Articles
- How to print calendar for a month in Python?
- How to print a calendar for a month in Python
- C Program for Print the pattern by using one loop
- Getting calendar for a month in Python
- Print calendar for a given year in C++
- How to print a diamond using nested loop using C#?
- Display Month of Year using Java Calendar
- C program to print multiplication table by using for Loop
- Increment a Month using the Calendar Class in Java
- Decrement a Month using the Calendar Class in Java
- C program to print name inside heart pattern using for loop.
- Calendar Functions in Python - ( calendar(), month(), isleap()?)
- C++ code to count columns for calendar with month and first day
- Get week of month and year using Java Calendar
- Print a pattern without using any loop in C++

Advertisements