Closed GlowingScrewdriver closed 4 months ago
Scopes are introduced by compound statements, functions, if
/else
, for
, and while
-- in general, any collection of statements.
Added more array tests.
The matrix-sum
test uses arrays allocated using both alloc
expression (stack allocation) and standard C library's malloc
function (heap allocation)!
Added tests gaussian-elimination
and insertion-sort
.
These two tests take inputs from the command line, using C standard library functions atoi
and strtof
Will fix #34 and #33
Scope code can be better structured. Added comments.
Implemented the following:
while
loop