Hi,

I want to send the value of a character string . I just want to pass the character string as literal.

For Example:-

Code:
Char temp[50];
temp contains:- "<Request>{requestRefund}</Request>"

I want to place this temp literally including double quotes(") in fucntion refund as an argument.

Code:
void refund ("initials", temp, "status");
//Is this the correct way to pass the temp..??...any ideas
//It should show like ("initials","<Request>{requestRefund}</Request>","status");


Another,

Code:
web_custom_request("Anyname", temp, LAST);
//is this the correct way to pass temp, so that temp will get replaced with "<Request>{requestRefund}</Request>" and it should look like:- web_custom_request("Anyname", "<Request>{requestRefund}</Request>",LAST);


Please help...Thanks in advance

Regards
Pawan