Recent content by moon5896

  1. M

    Email simulator Queue

    Queues are commonly used in network systems. For example, e-mail is placed in queues while it is waiting to be sent and after it arrives at the recipient's mailbox. A problem occurs, however, if the outgoing mail processor cannot send one or more of the messages in the queue. For example, a...
  2. M

    I need to solve the mouse come out from the maze.This is my coding..Can anyone help me solve the problem??

    #include<conio.h> #include<stdio.h> #define SIZE 15 #include<stdlib.h> void main() { int maze[SIZE][SIZE],mark[SIZE][SIZE],stack[SIZE][3]; static int move[8][2]={-1,0,-1,1,0,1,1,1,1,0,1,-1,0,-1,-1,-1}; int i,j,m,n,top,mov,g,h; system("cls"); printf("enter size"); scanf("%d%d",&m,&n)...