Tagged Questions
5
votes
5answers
1k views
Are strtol, strtod unsafe?
It seems that strtol() and strtod() effectively allow (and force) you to cast away constness in a string:
#include <stdlib.h>
#include <stdio.h>
int main() {
const char *foo = "Hello, ...