B (programming language): Difference between revisions

Content deleted Content added
might have been misread
Specify that auto refers to a keyword
Line 87:
extrn putchar;
auto a;
/* Wikipedia note: the auto keyword declares a variable with automatic
automatic storage (lifetime is function scope), not
"automatic typing" as in C++11. */
as in C++11. */
 
if (a = n / b) /* assignment, not test for equality */