Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Bankers_Algorithm.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ void main()
}
}

printf("\n------------------------------------------------------------------------------\n");
printf("\n---------------------------------------------------------------------------\n");
printf("\n Enter instance ALLOCATED for a Process & its corresponding resource :\n");
for(i=0; i<process; i++)
{
Expand All @@ -50,8 +50,8 @@ void main()
}
}

printf("\n------------------------------------------------------------------------------\n");
printf("\nSafe Sequence is : ");
printf("\n----------------------------------------------------------------------------\n");
printf("\nSafe Sequence is \n ");
while(count != process)
{
count = temp;
Expand Down