#!/usr/local/bin/tcc -run #include #include int main() { int x = 9252; char str[3] = "abc"; char str2[3] = "defg"; printf("%s\n", str2); printf("%zu\n", strlen(str2)); return 0; }