5 lines
93 B
Text
5 lines
93 B
Text
void main()
|
|
{
|
|
array fruit = ({ "apple", "orange" });
|
|
write("%d\n", sizeof(fruit));
|
|
}
|