Answers for "c last element of a char **"

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 "c last element of a char **"

Code answers related to "C"

Browse Popular Code Answers by Language