Answers for "get last 4 characters of string in c"

C
0

get last char string c

char fruit[5] = "apple";
printf("Last character : %c", fruit[strlen(fruit)-1]);
Posted by: Guest on April-29-2021
0

how to check where the last char is in a string c

strlen(str);
Posted by: Guest on June-01-2020

Code answers related to "get last 4 characters of string in c"

Code answers related to "C"

Browse Popular Code Answers by Language