Goal of Testing in Future
Goal of Testing in Future
Immediate goals
Bug Discovery
Bug prevention
Customer Satisfaction
Risk management
Post Implementation goals
For example
#include<stdio.h>
void main()
{
int i , fact, n;
printf(“enter the number “);
scanf(“%d”,&n);
for(i =1 ;i <=n;i++)
fact = fact * i;
printf (“the factorial of a number is %d”, fact);
}