I made my midterm exam in the C language course.
I lost 18 marks off 100 because I didn't relaize this killing fact:
in (for loops) there is no difference between incrementing the loop in
these two ways:
for (i=0; i < 10 ; ++i)
and
for (i=0; i < 10 ; i++)
( notice the difference is between i++ and ++i )
What are your comments on this.
I lost 18 marks off 100 because I didn't relaize this killing fact:
in (for loops) there is no difference between incrementing the loop in
these two ways:
for (i=0; i < 10 ; ++i)
and
for (i=0; i < 10 ; i++)
( notice the difference is between i++ and ++i )
What are your comments on this.
Comment