From a1ec2bfada1f6c97452533a11b477007b58af127 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Wed, 2 Oct 2024 15:02:00 -0700 Subject: [PATCH] applets/cjeopardy: fix wording of question 448 --- applets/cjeopardy/cjeopardy.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applets/cjeopardy/cjeopardy.txt b/applets/cjeopardy/cjeopardy.txt index 8ada4d16..f4a41fff 100644 --- a/applets/cjeopardy/cjeopardy.txt +++ b/applets/cjeopardy/cjeopardy.txt @@ -445,7 +445,7 @@ 445) [6.5.7 Bitwise shift operators] Each of the operands for the bitwise shift operators shall have this kind of type.|integer 446) [6.5.7 Bitwise shift operators] If the value of the right operand of a bitwise shift operator is this or is greater than or equal to the width of the promoted left operand, the behavior is undefined.|negative 447) [6.5.7 Bitwise shift operators] The result of E1 << E2 is E1 left-shifted E2 bit positions; vacated bits are filled with these.|zeros|zero|0 -448) [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 +448) [6.5.7 Bitwise shift operators] The result of E1 >> E2 is E1 right-shifted E2 bit positions. If E1 has a signed type and a negative value, the resulting value is this.|implementation-defined 449) [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 450) [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 451) [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