From 3c4ac2b4c0cb501df75293c841cd7e4e97023f3b Mon Sep 17 00:00:00 2001 From: Martin Simbartl Date: Thu, 8 Sep 2011 20:32:32 +0200 Subject: [PATCH] Fix < symbol. --- ex10.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ex10.tex b/ex10.tex index 7722a3c..3500d0d 100644 --- a/ex10.tex +++ b/ex10.tex @@ -46,7 +46,7 @@ \chapter{Exercise 10: Arrays Of Strings, Looping} array so you can process them without going past the end. \item The \ident{for-loop} sets up with \verb|i = 0| in the initializer. \item It then tests that \ident{i} is less than \ident{argc} with the - test \verb|i < argc|. Since initially 0 < 1 it will pass. + test \verb|i < argc|. Since initially $0 < 1$ it will pass. \item It then runs the code which just prints out the \ident{i} and uses \ident{i} to index into \ident{argv}. \item The incrementer is then run using the \verb|i++| syntax, which is