design a black box test suite for a program that accepts
two strings and checks if the first string is a substring
of the second string and displays the number of times the
first string occurs in the second string.
Answer / bhupndra
#include<stdio.h>
#include<conio.h>
int main()
{
int i=0,j=0,k=0,count=0,l=0,k1=0;
char a[80],b[80];
clrscr();
printf("\nEnter main string:-\n");
gets(a);
printf("\nEnter sub-string:-\n");
gets(b);
l=strlen(b);
while (a[i]!=EOF)
{
if (a[i]==b[j])
{
i++;
j++;
k1=1;
if (j==l)
{
j=0;
k=1;
count=count+1;
}
}
else
{
if (k1==1)
{
j=0;
k1=0;
}
else
i++;
}
}
if (k==1)
{
printf("\n\nThe given sub-string is present in the main
string.");
printf("\nIt is present %d times.",count);
}
else
{
if (k==0)
printf("\n\nThe given sub-string is not present in the
main string.");
}
}
| Is This Answer Correct ? | 10 Yes | 3 No |
How do you write DEFECT REPORT?
what is system integration testing or UAT testing ?
HI FRNDS, I HAVE 2.5 years OF exp In Manual Testing,Plz let me know if thr r any oppurtunities in any company in Bangalore ID:dsnithi@gmail.com Thanks in Advance
what is peer test?
2 Answers Semantic Space, SoftProdigy,
what is advantages and disadvantages of the Waterfall Model and V-Model ?
When do we perform smoke testing?
which out of the following can be considered as performance testing:- 1. Benchmarking 2.Recovery testing 3. more than one user testing
How do u test any "web-site" as a secure site...? or How do you test the security of a web-site...?
what are the techniques(steps) to follow for writing test cases? could u explain me with brief real time example?
What type of Testing u done ur project?
what is d difference between software development life cycle & system development life cycle?
diff between test plan and test strategy?