fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main() {
  5. char* lista[5] = {
  6. "coffe",
  7. "tea"
  8. "soda"
  9. "water",
  10. "juice"
  11. };
  12. printf("%zd", strlen(lista[0]));
  13. }
  14.  
  15. //https://pt.stackoverflow.com/q/446248/101
Success #stdin #stdout 0s 4532KB
stdin
Standard input is empty
stdout
5