AZMEERA BHAGYA SREE
AZMEERA BHAGYA SREE
**wave traversal.** **c langauge** 
cutting char array by bhagya sree from this code we can cut any char which we want to cut in array 
#include using namespace std; void swap(int *a ,int *b) { int *temp ; *temp = *a; *a=*b; *b=*temp; } void waveSort(int arr[],int n) { sort(arr,arr+n); for(int i=0;i
#include #include struct node { int data; struct node *next; }; struct node *head=NULL; struct node* getnewnode(int val) { struct node*temp; temp= (struct node*)malloc(sizeof(struct node)); temp->data=val; temp->next=NULL; return temp; }...