Mercurial > ~dholland > hg > tradcpp > index.cgi
view tests/t08.c @ 185:16b4451e34b8
Add the ability to output line numbers, sort of.
It is enabled with the intentionally undocumented -p option (similar
to -P but reversed sense) and it might be vaguely useful but only
prints the line number when the file changes and may not get the line
numbers right.
author | David A. Holland |
---|---|
date | Fri, 12 Jun 2015 03:59:36 -0400 (2015-06-12) |
parents | c24cbfa44f81 |
children |
line wrap: on
line source
/*#include <stdio.h>*/ int d = #if 2 > 1 ? 0 : 0 ? 1 : 1 1 #else 0 #endif ; int e = #if (2 > 1 ? 0 : 0) ? 1 : 1 1 #else 0 #endif ; int f = #if 2 > 1 ? 0 : (0 ? 1 : 1) 1 #else 0 #endif ; int main() { int a, b, c; a = 2 > 1 ? 0 : 0 ? 1 : 1; b = (2 > 1 ? 0 : 0) ? 1 : 1; c = 2 > 1 ? 0 : (0 ? 1 : 1); printf("%d %d %d\n", a, b, c); printf("%d %d %d\n", d, e, f); return 0; }