How to get the last character of a string in C
In this post we will give you information about How to get the last character of a string in C. Hear we will give you detail about How to get the last character of a string in CAnd how to use it also give you demo for it if it is necessary.
we are going to learn about how to get the last character of a string in C.
Consider, we have the following string.
char fruit[5] = "apple";
Now, we want to get the last character e from the above string.
Getting the last character
To access the last character of a string in C, we first need to find the last character index using the strlen(str)-1 and pass it to the [] notation.
The strlen() function returns the total number of characters in a given string.
Here is an example, that gets the last character e from the following string:
#include <stdio.h>#include <string.h>int main() { char fruit[5] = "apple"; printf("Last character : %c", fruit[strlen(fruit)-1]);}
Output:
"e"
Hope this code and post will helped you for implement How to get the last character of a string in C. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs