C Exercises: Show the first of calendar time
C Date Time: Exercise-9 with Solution
Write a program in C to show the first of calendar time.
Sample Solution:
C Code:
#include <stdio.h>
#include <time.h>
int main(void)
{
struct tm first = {.tm_mday=1};
mktime(&first);
printf("\n%s\n", asctime(&first));
}
Sample Output:
Sun Jan 01 00:00:00 1900
Flowchart:

C Programming Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a program in C to print the date and time before 24 months.
Next: Write a program in C to show the start of the epoch.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
C Programming: Tips of the Day
"#include" a text file in a C program as a char[]
$ echo hello world > a $ xxd -i a
Sample Output:
unsignedchar a[] = { 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x20, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x0a }; unsignedint a_len = 12;
Ref : https://bit.ly/3hDnOcj
- New Content published on w3resource:
- HTML-CSS Practical: Exercises, Practice, Solution
- Java Regular Expression: Exercises, Practice, Solution
- Scala Programming Exercises, Practice, Solution
- Python Itertools exercises
- Python Numpy exercises
- Python GeoPy Package exercises
- Python Pandas exercises
- Python nltk exercises
- Python BeautifulSoup exercises
- Form Template
- Composer - PHP Package Manager
- PHPUnit - PHP Testing
- Laravel - PHP Framework
- Angular - JavaScript Framework
- Vue - JavaScript Framework
- Jest - JavaScript Testing Framework