Answers for "c int to char array"

C
1

char array to int c

char *string = "-123";
int i = atoi(string);
Posted by: Guest on March-29-2021
1

char array to int c

char myarray[5] = {'-', '1', '2', '3', ''};
int i;
sscanf(myarray, "%d", &i);
Posted by: Guest on March-29-2021
1

c modify char array

char name_buf[5] = "Bob";
name_buf = "Alice";   // error
strcpy(name_buf, "Alice");
Posted by: Guest on August-24-2020
0

c add char to char array

char str[1024] = "Hello World";
char tmp[2] = "."; 		//Has to be of size 2 because strcat expects a NULL terminated string

strcat(str, tmp);
Posted by: Guest on June-01-2021

Code answers related to "C"

Browse Popular Code Answers by Language