Capgemini
Company
Programming
Program
hi friends i want to know wat the following code does and wat is that pchar cdecl and exports everthing i want to know please reply me the code written in vb
function ReverseString( A: PChar ): PChar ; Cdecl;
Var
S, X : String;
i : Integer;
Begin
X := A;
For i := Length(X) Downto 1 Do
Begin
S := S + X[i] ;
End;
ReverseString := PChar(S) ;
End;
exports
ReverseString ;
begin
end.
Read Solution (Total 1)
-
- Compile time errors
- 9 years agoHelpfull: Yes(0) No(0)
Capgemini Other Question