You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Declare a as function(array[2+1] (size checked) of int) returning int
Declare b as function(int named q, array[q] (size checked) of int) returning int
Declare c as function(array[2+1] of int) returning int
Declare d as function(int named q, array[q] of int) returning int
Actual Prose or Error
Syntax Error
Additional Context
Any expression may be used for array bounds, the expression should just be pasted into the square brackets after array and it should be checked that no comma operators are used directly (e.g. int[1,2] is invalid).
The text was updated successfully, but these errors were encountered:
cdecl+ Input
Expected Prose
Actual Prose or Error
Additional Context
Any expression may be used for array bounds, the expression should just be pasted into the square brackets after
array
and it should be checked that no comma operators are used directly (e.g.int[1,2]
is invalid).The text was updated successfully, but these errors were encountered: