Revert "Add predictability in CType initialization."
[tinycc.git] / tests2 / 33_ternary_op.c
blob8579b5029a1eae8437f539e41462f6abca1c0e29
1 #include <stdio.h>
3 int main()
5 int Count;
7 for (Count = 0; Count < 10; Count++)
9 printf("%d\n", (Count < 5) ? (Count*Count) : (Count * 3));
12 return 0;
15 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/