
Originally Posted by
Ioannis
Well, about that C stuff, C in general forces you to be a better programmer, having to structure your program more efficiently. Also forces you to use functions, the equivalent of a subroutine, but more efficiently. For example, calling a function in C, lets you pass variables that really aren't used before and won't be used after. So memory is really conserved that way.
In Basic compiler this is not the case. You have to declare the variables that are going to be used and they reserve their location permanently.
Bookmarks