structure

MODIFY COMMAND Command 1.10 The MODIFY command is used to

 1.10 The MODIFY command is used to 

 

Linux file structure and directories


 

Stack Implementation using array

/* Program of stack using array*/
#include
#define MAX 5

int top = -1;
int stack_arr[MAX];

main()
{
int choice;
while(1)
{
printf("1.Push\n");
printf("2.Pop\n");
printf("3.Display\n");
printf("4.Quit\n");
printf("Enter your choice : ");
scanf("%d",&choice);
switch(choice)
{
case 1 :
push();
break;
case 2:
pop();
break;
case 3:

 

Data Structure Using C

data structures are classes that are used to organize data and provide various operations upon their data.

Most common and well-known data structure is the array, which contains a contiguous collection of data items that can be accessed by an ordinal index.

 

structural testing

Structural testing is white box testing, not black box testing, since black boxes are considered opaque and do not permit visibility into the code.

Structural testing is also known as clear box testing, also known as glass box testing.

Structural testing is a way to test software with knowledge of the internal workings of the code being tested

 

Syndicate content