Skip to main content

Posts

Showing posts from July, 2019
Instead of  using  array, we can also use  linked list  to implement  stack .  Linked list  allocates the memory dynamically. However, time complexity in both the scenario is same for all the operations i.e. push, pop and peek. Click here
The C Program is written for implementation of STACK using Array, the basic operations of stack are PUSH(), POP() and DISPLAY(). PUSH function in the code is used to insert an element to the top of stack, POP function used to remove the element from the top of stack. stack_struct
C is a general-purpose, procedural computer programming language supporting structured programming, lexical variable scope, and recursion, while a static type system prevents unintended operations. C  is a procedural programming language. It was initially developed by Dennis Ritchie between 1969  and  1973. It was mainly developed as a system programming language to write operating system.I have Study c in deep By this Ebook  Click here
C++  is a general purpose programming language and widely used now a days for competitive programming. C++  ranks 4th in popularity according to 2016 IEEE spectrum Top Programming Language ranking. Learning  C++  is a wise investment for all programmers. To download my C++ ebook  Click here