#include <stdio.h>
#include <string.h>

int main() {
    char* lista[5] = {
        "coffe",
        "tea"
        "soda"
        "water",
        "juice"
    };
    printf("%zd", strlen(lista[0]));
}

//https://pt.stackoverflow.com/q/446248/101