1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 06:47:54 +02:00

Correction to use the intended variables.

This commit is contained in:
adventuretc
2014-09-27 21:38:30 +02:00
parent 66f62c63ca
commit a5b7319eac

View File

@@ -217,7 +217,7 @@ int main() {
int e = 5; int e = 5;
int f = 10; int f = 10;
int z; 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: //Increment and decrement operators:
char *s = "iLoveC"; char *s = "iLoveC";