Skip to content

Conversation

@ghost
Copy link

@ghost ghost commented Oct 5, 2018

No description provided.

int currentYear;
int birthYear;

currentYear = 2014;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#include<time.h> directives could be used for current year.
or can use predefined macros in C.

#include <stdio.h>
int main()
{
    printf("%s", __DATE__ + 7); //points to 8th byte to print year
    return 0;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants