3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-01 17:16:39 +02:00

Add "greater" as alternate answer to a certain question

This commit is contained in:
Pragmatic Software 2015-05-22 03:59:00 -07:00
parent 66635da9cc
commit b0b74cd6ea

View File

@ -448,7 +448,7 @@
[6.5.7 Bitwise shift operators] The result of E1 << E2 is E1 left-shifted E2 bit positions. If E1 has a signed type and a negative value, the resulting value is this.|implementation-defined
[6.5.8 Relational operators] When two pointers are compared, the result depends on the relative locations in this of the objects pointed to.|address space
[6.5.8 Relational operators] If two pointers to object types both point to the same object, or both point one past the last element of the same array object, they compare as this.|equal
[6.5.8 Relational operators] If the expression P points to an element of an array object and the expression Q points to the last element of the same array object, the pointer expression Q+1 compares as this to P.|greater than|>
[6.5.8 Relational operators] If the expression P points to an element of an array object and the expression Q points to the last element of the same array object, the pointer expression Q+1 compares as this to P.|greater than|>|greater
[6.5.8 Relational operators] Each of the operators < (less than), > (greater than), <= (less than or equal to), and >= (greater than or equal to) shall yield 1 if the specified relation is true and 0 if it is false. The result has this type.|int
[6.5.9 Equality operators] Two pointers compare as this if one is a pointer to one past the end of one array object and the other is a pointer to the start of a different array object that happens to immediately follow the first array object in the address space.|equal
[6.5.13 Logical AND operator] Each of the operands of the && operator shall have this kind of type.|scalar