Posts by Rafael Nascimento • 26 points
2 posts
-
0
votes1
answer87
viewsA: C: How to generate a date structure
mktime() uses the "Unix era", which is a way of representing dates by means of seconds. Where a date (along with hour, minutes and seconds) is represented by the number of seconds between 1 January…
-
1
votes3
answers282
viewsA: strcpy function does not work on Linux
As a link has been declared as a pointer (from a char array), therefore the link variable (or the link[0]) represents a pointer pointer (char **), as both of them alone (without the statement as…