ATOI String to int

#include <stdlib.h>

int i;
char * number = "99";
i = atoi (number);
Brainy Bug