mirror of
https://github.com/nArnoSNES/tcc-65816.git
synced 2025-02-20 04:28:56 +00:00
11 lines
105 B
C
11 lines
105 B
C
sub (int i, int array[i++])
|
|
{
|
|
return i;
|
|
}
|
|
|
|
main()
|
|
{
|
|
int array[10];
|
|
exit (sub (10, array) != 11);
|
|
}
|