From a5b7319eac940cd81693fd590f3df01b5a70816b Mon Sep 17 00:00:00 2001 From: adventuretc Date: Sat, 27 Sep 2014 21:38:30 +0200 Subject: Correction to use the intended variables. --- c.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'c.html.markdown') diff --git a/c.html.markdown b/c.html.markdown index cbb6d289..10e6fa45 100644 --- a/c.html.markdown +++ b/c.html.markdown @@ -217,7 +217,7 @@ int main() { int e = 5; int f = 10; int z; - z = (a > b) ? a : b; // => 10 "if a > b return a, else return b." + z = (e > f) ? e : f; // => 10 "if e > f return e, else return f." //Increment and decrement operators: char *s = "iLoveC"; -- cgit v1.2.3