eci/tests/33_ternary_op.c
2014-01-16 21:52:25 +01:00

11 lines
152 B
C

#include <stdio.h>
int Count;
for (Count = 0; Count < 10; Count++)
{
printf("%d\n", (Count < 5) ? (Count*Count) : (Count * 3));
}
void main() {}