#include <stdio.h>
int main()
{
char str[] = "This is the text";
printf("%d\n", sizeof(str));
return 0;
}
References: C From Theory