Posts by J.Hintze • 41 points
2 posts
-
1
votes1
answer87
viewsQ: C: How to generate a date structure
good afternoon. I’m having a hard time with the C-date manipulation. I’m using the time. h library to mess with dates. I need to create a struct tm which contains the date of the day (example)…
-
2
votes1
answer760
viewsQ: How to remove non-numeric characters?
I want to remove all non-numeric characters from a string. I found the function isdigit that could help me. With it, I’ve gone through all the characters of a string and those that are numeric, I…