AZMEERA BHAGYA SREE

Results 4 issues of AZMEERA BHAGYA SREE

**wave traversal.** **c langauge** ![Screenshot (321)](https://user-images.githubusercontent.com/85113970/136653852-491f9d1a-bf82-48a0-88d7-eeb44ed78acc.png)

cutting char array by bhagya sree from this code we can cut any char which we want to cut in array ![Screenshot (305)](https://user-images.githubusercontent.com/85113970/135955045-95b27c3b-08b7-4a40-8dd0-416a4a61f111.png)

#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; }...