I have a char* array as follows:
char*
char *tbl[] = { \"1\", \"2\", \"3\" };
How do I use the sizeof operator to get t
sizeof
The shorter and, arguably, cleaner version would look as
sizeof tbl / sizeof *tbl
:)