Thursday, 26 December 2013
For, While, Do While Loop concepts
int i=0;
char j[]="Ganesh kodi krishna manoj vinoth sivaram manohar";
int n=strlen(j);
for (i=0;i<n;i++)
{
lr_output_message("My name is %c:",j[i]);
if (j[i]==' ')
{
lr_output_message("\t");
}
}
------------- >>>>>>>>>>> ***************** <<<<<<<<<<<<<<-----------------------
i=0;
while(i<n)
{
lr_output_message("My name is %c:",j[i]);
if (j[i]==' ')
{
lr_output_message("\n");
}
i++;
}
------------- >>>>>>>>>>> ***************** <<<<<<<<<<<<<<-----------------------
i=0;
do
{
lr_output_message("Myname is %c:",j[i]);
i++;
}
while(i<n);
char j[]="Ganesh kodi krishna manoj vinoth sivaram manohar";
int n=strlen(j);
for (i=0;i<n;i++)
{
lr_output_message("My name is %c:",j[i]);
if (j[i]==' ')
{
lr_output_message("\t");
}
}
------------- >>>>>>>>>>> ***************** <<<<<<<<<<<<<<-----------------------
i=0;
while(i<n)
{
lr_output_message("My name is %c:",j[i]);
if (j[i]==' ')
{
lr_output_message("\n");
}
i++;
}
------------- >>>>>>>>>>> ***************** <<<<<<<<<<<<<<-----------------------
i=0;
do
{
lr_output_message("Myname is %c:",j[i]);
i++;
}
while(i<n);
Hp ALM Performance center Study materiel
http://hpsws.lithium.com/hpsws/attachments/hpsws/QC_SUP/508/1/
Performance Testing Important Links
http://motevich.blogspot.in/2007/10/loadrunner-scripts-correlation-tutorial.html
http://www.softwaretestingstuff.com/2009/10/important-loadrunner-tutorials.html
http://www.softwaretestingstuff.com/2009/10/replay-tips-for-citrix-protocol-in.html
http://tamil.gizbot.com/computer/google-chrome-tricks-probably-you-do-not-know-006679.html#slide418817
http://easyloadrunner.blogspot.in/2013/07/citrix-protocol-in-load-runner.html
http://hpsws.lithium.com/hpsws/attachments/hpsws/QC_SUP/508/1/
http://performance.punebids.com/?page_id=262
http://learnperformancetest.blogspot.in/2011/02/loadrunner-and-performance-center-ip.html
http://www.vietnamesetestingboard.org/zbxe/?document_srl=405805
http://msdn.microsoft.com/en-us/library/bb924375.aspx
http://bharath-marrivada.blogspot.in/2010/10/loadrunner-11-new-features-limitations_21.html
http://www.softwaretestingstuff.com/2009/10/important-loadrunner-tutorials.html
http://www.softwaretestingstuff.com/2009/10/replay-tips-for-citrix-protocol-in.html
http://tamil.gizbot.com/computer/google-chrome-tricks-probably-you-do-not-know-006679.html#slide418817
http://easyloadrunner.blogspot.in/2013/07/citrix-protocol-in-load-runner.html
http://hpsws.lithium.com/hpsws/attachments/hpsws/QC_SUP/508/1/
http://performance.punebids.com/?page_id=262
http://learnperformancetest.blogspot.in/2011/02/loadrunner-and-performance-center-ip.html
http://www.vietnamesetestingboard.org/zbxe/?document_srl=405805
http://msdn.microsoft.com/en-us/library/bb924375.aspx
http://bharath-marrivada.blogspot.in/2010/10/loadrunner-11-new-features-limitations_21.html
Subscribe to:
Posts (Atom)