5 lines
64 B
Text
5 lines
64 B
Text
char foo()
|
|
{
|
|
char array[5] = {3,6,9,12,15};
|
|
return array[2];
|
|
}
|