// // 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 : Mon Jun 8 20:44:48 2015 // Update Count : 75 // int foo() { 1_234_Ul; -0_177; 017_777_777_777; 037_777_777_777; 0x_7f_FF_ff_FF; 0x_ff_FF_ff_FF; 2_147_483_647; 4_294_967_295; 4_294_967_296; 4_294_967_296U; 0_777_777_777_777_777_777_777; 01_777_777_777_777_777_777_777; 0; 0L; 0LL; 1; 1L; 1LL; 10; 10L; 10LL; 2U; 2UL; 2ULL; 2LU; 2LLU; 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; 3.141_59f; 3.14159; 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: //