Answers for "how to get the last character of a stringin 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

Code answers related to "how to get the last character of a stringin c"

Code answers related to "C"

Browse Popular Code Answers by Language