// // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo // // The contents of this file are covered under the licence agreement in the // file "LICENCE" distributed with Cforall. // // constants.c -- // // Author : Richard C. Bilson // Created On : Wed May 27 17:56:53 2015 // Last Modified By : Peter A. Buhr // Last Modified On : Sat Jun 6 15:08:43 2015 // Update Count : 63 // int foo() { 1_234_Ul; -0_177; 017777777777; 037777777777; 0x_7f_FF_ff_FF; 0x_ff_FF_ff_FF; 2_147_483_647; 4_294_967_295; 0777777777777777777777; 01777777777777777777777; 0x_7f_FF_ff_FF_ff_FF_ff_FF; 0x_ff_FF_ff_FF_ff_FF_ff_FF; 9_223_372_036_854_775_807; 18_446_744_073_709_551_615; 12.123_333_E_27L; 0X_1.ff_ff_ff_ff_ff_fff_P_1023; '\0'; '\1_2_3'; L'\x_ff_ee'; L_"\x_ff_ee"; L"a_b\r\Qyc\u_00_40 x_y_z\xff_AA"; L_"a_b\r\Qyc\u_00_40\ x_y_z\xff_AA"; "abc" "def" "ghi"; } // Local Variables: // // tab-width: 4 // // compile-command: "cfa constants.c" // // End: //