diff --git a/README.md b/README.md index a07a78b..ba37bf8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,2 @@ ## DataStructures -This repository for my implemented data structure using C -I write this code when I was in college second grade at 2010 in data structure course - -+ [Stack data structure pointer based using C](https://github.com/MoustafaAttia/DataStructures/tree/StackPointerBased) -+ [Stack data structure array based using C](https://github.com/MoustafaAttia/DataStructures/tree/StackArrayBased) +### Queue using array based in C language diff --git a/Test Queue.cpp b/Test Queue.cpp index 2bebef7..bed4fc9 100644 --- a/Test Queue.cpp +++ b/Test Queue.cpp @@ -111,7 +111,7 @@ int QueueSize2(Queue *s) int main() { printf("********************************************\n" - "This Queue is just for CHAR onlyyyyyyyy \n" + "This Queue is just for CHAR only \n" "********************************************\n"); Queue q , t; QueueEntry e; @@ -166,4 +166,4 @@ int main() putchar('\n'); return 0; -} \ No newline at end of file +}