In C, the index of the first element of an array is 0
#include <stdio.h> #include <stdlib.h> int main(int argc, char const *argv[]) { char c[20] = {'l','a','u','t','t','u','r','i','!'}; printf("%c",c[0]); return 0; }