pascal 使用
学delphi这前要先一些pascal基础.但是对pascal的基本用法如何在delphi环境下应用.如验证两整数交换.可如下:uses
type point=^integer;
var
p:point;
a,b,c:integer;
begin
a:=100;
b:=50;
p:=@a;
c:=p^;
p^:=b;
b:=c;
end.
请问如何在delphi运行..
2007-11-07 01:14
2007-11-07 11:46