programs
i have this instruction to compile something with maple... or similar
program
begin
a:=90.9; i:=-5;
while a >= 8 do
a := a/3
i:= i+a;
end
i need to know the value of i at the end of the prog iteration process.
any idea?
thanks
.
Relevant Pages
- Re: interesting use of NEXT SENTENCE vs. CONTINUE
... > the existence of an instruction to draw the proper comparison. ... > memory address pointed to by register based on the tested condition. ... > case is precisely the differing object code for the unconditional branch, ... Won't compile as is ... ... (comp.lang.cobol) - Re: CREATE
... possible code field address. ... defining word's definition. ... compiled with the more general subroutine call instruction that could ... The only difference being that, at compile time, VARIABLE ... (comp.lang.forth) - Re: CREATE
... into CREATE unnecessarily restricts certain implementation techniques. ... subroutine call instructions, e.g. the Intel 8080 RST, or the RCA 1802 ... compiled with the more general subroutine call instruction that could ... The only difference being that, at compile time, VARIABLE ... (comp.lang.forth) - Re: Illegal instruction (core dumped)
... (snip regarding "Illegal instruction (core dumped)") ... > 1) overwriting the compiled code by writing to an invalid array ... any compile time errors. ... (comp.lang.fortran) - Re: "Interesting" C behaviours
... > compile to a single machine instruction. ... It was architecture dependent in K&R, ... (comp.lang.c) |
|