Answers for "atoi string to int"

C
0

atoi string to int

#include <stdlib.h>

int i;
char * number = "99";
i = atoi (number);
Posted by: Guest on May-08-2022

Code answers related to "C"

Browse Popular Code Answers by Language