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.7K
~376 People Reached
Favorite Forums
Favorite Tags
c x 1
Member Avatar for rcolelli84

I'm connected to cox high speed internet 4mbps internet service. I have a router, and two PCs are connected to it. One PC is getting the 4 Mbps downspeed, but one is only getting around 1Mbps. The upspeed on both are fine. The PC with the slower connection has an …

Member Avatar for Master Rattley
0
132
Member Avatar for Iam3R

[CODE] #include<stdio.h> #include<stdlib.h> #define MAX 5 char queue[MAX][30]; int front, rear, temp; void init() { front = -1; rear = -1; } void insert() { if ( rear >= MAX-1 && front == -1 ) { printf("\nQueue overflow"); return ; } temp = rear; rear = ( rear + 1 …

Member Avatar for tirath9792
0
244