summaryrefslogtreecommitdiff
path: root/deneme_24.c
blob: c3e6e7bfdec627ebd7f3b772f05d7a33855b2114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
#include <string.h>

int main() {
	char input[200];

	printf("Write what you want to write: ");
	gets(input);

	int strleng = strlen(input);

	printf("%c\n",input[strleng-1]);

}