Literals/Integer: Difference between revisions

→‎{{header|C}}: create C++ example
m (→‎{{header|E}}: closing tag)
(→‎{{header|C}}: create C++ example)
Line 64:
<lang c>#include <stdio.h>
 
int main(void)
{
printf("%s\n",
Line 75:
C has no way of specifying integers in binary (if there's something like <tt>0b...</tt>, it is not
standard)
 
=={{header|C++}}==
 
The same comments apply as to the [[#C|C example]].
 
<lang c>#include <iostream>
 
int main()
{
std::cout << ( (727 == 0x2d7) &&
(727 == 01327) ? "true" : "false")
<< std::endl;
return 0;
}</lang>
 
=={{header|Common Lisp}}==