Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • C
#include <stdlib.h>
i = (int)strtol(s, (char **)NULL, 10);

The atoi() function has been deprecated by strtol()
#include <stdlib.h>
int i = atoi(s);
I : Integer := Integer'Value (s);

New implementation...