c.texi: update FSF address.

This commit is contained in:
Richard Stallman 2024-08-31 21:52:07 -04:00
parent 21380ea8fa
commit 6296201310
1 changed files with 4 additions and 4 deletions

8
c.texi
View File

@ -64,8 +64,8 @@ modify this GNU manual.''
@sp 2 @sp 2
@ignore @ignore
WILL BE Published by the Free Software Foundation @* WILL BE Published by the Free Software Foundation @*
51 Franklin Street, Fifth Floor @* 31 Milk St # 960789 @*
Boston, MA 02110-1301 USA @* Boston, MA 02110 USA @*
ISBN ?-??????-??-? ISBN ?-??????-??-?
@end ignore @end ignore
@ -5687,7 +5687,7 @@ Statement}). Used in this way, it immediately exits the surrounding
@code{for} statement. @code{for} statement.
@code{*p++} uses postincrement (@code{++}; @code{*p++} uses postincrement (@code{++};
@pxref{Postincrement/Postdecrement}) on the pointer @code{p}. that @pxref{Postincrement/Postdecrement}) on the pointer @code{p}. That
expression parses as @code{*(p++)}, because a postfix operator always expression parses as @code{*(p++)}, because a postfix operator always
takes precedence over a prefix operator. Therefore, it dereferences takes precedence over a prefix operator. Therefore, it dereferences
the entering value of @code{p}, then increments @code{p} afterwards. the entering value of @code{p}, then increments @code{p} afterwards.
@ -6636,7 +6636,7 @@ r1.data = r2.data;
@noindent @noindent
would convert the array objects (as always) to pointers to the zeroth would convert the array objects (as always) to pointers to the zeroth
elements of the arrays (of type @code{struct record *}), and the elements of the arrays (of type @code{int *}), and the
assignment would be invalid because the left operand is not an lvalue. assignment would be invalid because the left operand is not an lvalue.
@node Unions @node Unions