Answers for "C check last element of string function"

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 "C check last element of string function"

Code answers related to "C"

Browse Popular Code Answers by Language