Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This noncompliant example highlights the result of adding an integer and a long value even though it appears that two integers 11111 1111 are being added.

Code Block
bgColor#FFCCCC
	printf("Sum is %ld\n", 1111 + 111l);

...