Posts
 
Reputation
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
~528 People Reached
Favorite Forums

2 Posted Topics

Member Avatar for rcolelli84

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.

Member Avatar for Master Rattley
0
140
Member Avatar for Iam3R

#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; …

Member Avatar for tirath9792
0
388

The End.