...
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 | ||
---|---|---|
| ||
printf("Sum is %ld\n", 1111 + 111l); |
...
...
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 | ||
---|---|---|
| ||
printf("Sum is %ld\n", 1111 + 111l); |
...