Display Table Name with the help of Table Id

HI To display Table name with the help of Table id

see this code

static void tableId2NameExample(Args _arg)

{

str s;

tableid id;

;

// Get the ID for table name Address.

id = tableName2Id(“Address”);

print "ID for table name Address is " + int2Str(id);

// Get the name from the table ID.

s = tableId2Name(id);

print "Name for table ID " + int2Str(id) + " is " + s;

// Get the printable name from the table ID.

s = tableId2PName(id);

print "Printable name for table ID " + int2Str(id) + " is " + s;

pause;

}