Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.9K
2 Posted Topics
Re: Slow downspeed
hi there, I had the same problem but by using proper browsers and reconfiguring the router i got fix this problem try it by accessing your IP address.
#include<iostream.h> #include<conio.h> const int MAX = 5; class cqueue { int a[MAX],front,rear; public : cqueue() { front=rear=-1; } void insert(int ); int deletion(); void display(); }; void cqueue :: insert(int val) { if((front==0 && rear==MAX-1) || (rear+1==front)) cout<<" Circular Queue is Full "; else { if(rear==MAX-1) rear=0; else rear++; a[rear]=val; …
The End.
tirath9792