What type of variables can be used with in the TSL function???

Showing Answers 1 - 3 of 3 Answers

tiger

  • Sep 29th, 2005
 

auto and static variables.

auto: An auto variable can be declared only within a function and is local to that

function. It exists only for as long as the function is running. A new copy of the

variable is created each time the function is called.

static: A static variable is local to the function, test, or compiled module in which

it is declared. The variable retains its value until the test is terminated by an Abort

command. This variable is initialized each time the definition of the function is

executed.

  Was this answer useful?  Yes

rashmi ranjan nayak

  • Oct 19th, 2005
 

there are 4 types of variables are used in Win Runner. 1.public2.extern3.static4.auto

  Was this answer useful?  Yes

tiger

  • Oct 20th, 2005
 

tiger Wrote:

auto , static public,extern variables.

auto: An auto variable can be declared only within a function and is local to that

function. It exists only for as long as the function is running. A new copy of the

variable is created each time the function is called.

static: A static variable is local to the function, test, or compiled module in which

it is declared. The variable retains its value until the test is terminated by an Abort

command. This variable is initialized each time the definition of the function is

executed.


  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions