diff options
author | Levi Bostian <levi.bostian@gmail.com> | 2013-09-20 22:19:07 -0500 |
---|---|---|
committer | Levi Bostian <levi.bostian@gmail.com> | 2013-09-20 22:19:07 -0500 |
commit | ec7ee88698bf32bfe6e931865e94d2dac8f41c80 (patch) | |
tree | 55fac897e36a34c19a7dc434abd227049cba322a /c.html.markdown | |
parent | f471616ccb97e5fd32393f1f408394cfebe0d151 (diff) |
Add to ? : example in C.
Diffstat (limited to 'c.html.markdown')
-rw-r--r-- | c.html.markdown | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/c.html.markdown b/c.html.markdown index df6cd036..f1e328cf 100644 --- a/c.html.markdown +++ b/c.html.markdown @@ -199,8 +199,10 @@ int main() { 0 || 0; // => 0 //Conditional expression ( ? : ) - int a, b, z; - z = (a > b) ? a : b; // "if a > b return a, else return b." + int a = 5; + int b = 10; + int z; + z = (a > b) ? a : b; // => 10 "if a > b return a, else return b." //Increment and decrement operators: s[j++]; //returns value of j to s THEN increments value of j. |