...
Code Block | ||
---|---|---|
| ||
long sl1, sl2, result; /* Initialize sl1 and sl2 */ if ( (sl2 == 0) ) { /* handle error condition */ } else { result = sl1 / sl2; } |
...
Code Block | ||
---|---|---|
| ||
long sl1, sl2, result; /* Initialize sl1 and sl2 */ if ( (sl2 == 0 ) ) { /* handle error condition */ } else { result = sl1 % sl2; } |
...
<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="5b6034ab4c18a040-3af78080-44964bf6-a150b999-f29cb3eeaabd84b06ae725b5"><ac:plain-text-body><![CDATA[ | [[ISO/IEC 9899:1999 | AA. Bibliography#ISO/IEC 9899-1999]] | Section 6.5.5, "Multiplicative operators" | ]]></ac:plain-text-body></ac:structured-macro> |
<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="6bd9e9966588009d-a05cd81a-425145a2-846c916d-a01fcbeba2a31f54d855f89f"><ac:plain-text-body><![CDATA[ | [[Seacord 05 | AA. Bibliography#Seacord 05]] | Chapter 5, "Integers" | ]]></ac:plain-text-body></ac:structured-macro> |
<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="6253647bb4cf2e49-a02a8128-44f54ece-b354a62c-083c4252c89db629436eda65"><ac:plain-text-body><![CDATA[ | [[Warren 02 | AA. Bibliography#Warren 02]] | Chapter 2, "Basics" | ]]></ac:plain-text-body></ac:structured-macro> |
...