The B Programming LanguageData ObjectsTypes and Declaration B, on the other hand, is a typeless language.
The compiler does not keep track of whether variables refer to integers,
characters, octal numbers, and so on; that is left up to you. You can
subtract the letter 'a'
from 1.5
without getting an error in B...of course, the answer will not mean much,
but you can do the subtraction. Declarations in B specify storage class of variables.
Such declarations also, in some circumstances, specify initialization. Arithmetic, Octal Numbers The arithmetic operators are the usual '+', '-', '*', and '/' (integer division). In addition, we have the remainder operator '%': x = a%b sets x to the remainder after a is divided by b (both
of which should be positive).
This program prints "hi!" on the terminal
it illustrates the use of character constants and variables. A
"character" is one to four ASCII characters, enclosed in single
quotes. The characters are stored in a single machine word, right
justified and zero-filled. We used a variable to hold "hi!” but
could have used a constant directly as well. Since B is a typeless language, arithmetic on characters is quite legal, and even makes sense sometimes:
converts a single character stored in c to upper case (making use of the fact that corresponding ASCII letters are a fixed distance apart). Assignment and Type Conversion
The assignment operator = merely evaluates the
rvalue
and stores the result in the lvalue. The assignment operators =|,
=&, ===,
=|=, =<,
=<=, =>,
=>=, =<<,
=>>,
=+, =-,
=%, =*,
and =/
perform a binary operation between the rvalue stored in the assignment's
lvalue and the assignment's rvalue. The result is then stored in the
lvalue. The expression x=*10 is identical to x=x*10. Vectors External Vectors External vectors may be initialized just as external
simple variables:
sets v[0] to the character constant 'hi!', and
v[1]
through v[4] to various numbers. v[5] through v[10] are not initialized. Addressing
The unsuspecting might believe that u[0] and u[1]
contain the old values of v[0] and v[1]; in fact, since u is just a
pointer to v[0] , u actually refers to the new content. The statement
"u=v" does not cause any copy of information into the elements
of u; they may indeed be lost because u no longer points to them.
|