1D Array

Easy Basic Linear Linked List Code

Basic Linear Linked List Code Two operations of Basic Linear Linked List are designed in this code. In this code one linear linked list is created by using create() function and that basic linear linked list is displayed by using disp() function. Using dynamic memory allocation concept memory is occupied. This is a very simple …

Easy Basic Linear Linked List Code Read More »

Easy Circular Queue implementing code using structure

Code for implementing Circular Queue This code is designed for implementing all the functions available in Circular Queue. In this code structure is used for maintaining the approach. As we know Queue follows FIFO concept, so here we have designed Enqueue() and Dequeue() functions as per the concept. We have used structure type pointer as …

Easy Circular Queue implementing code using structure Read More »

Easy Linear Queue implementing code using structure

Code for implementing Linear Queue This code is designed for implementing all the functions available in Linear Queue. In this code structure is used for maintaining the approach. As we know Queue follows FIFO concept, so here we have designed Enqueue() and Dequeue() functions as per the concept. We have used structure type pointer as …

Easy Linear Queue implementing code using structure Read More »

Easy Code for Checking Parenthesis

Code for checking Braces placed properly or not This code is designed for checking braces in an equation. In this code you have to pass an equation in string (character array) format, the code will check whether you have completed or closed braces in proper place or with proper pair. This is the easiest way …

Easy Code for Checking Parenthesis Read More »

Easy Postfix Evaluation code

Code for implementing Postfix Evaluation This code is designed for converting an infix equation(expression) into postfix  equation(expression) means Infix to Postfix and also for implementing Postfix Evaluation. In this code you have to pass an equation or expression in infix form as string (character array) format, the code will convert the infix expression into postfix …

Easy Postfix Evaluation code Read More »

Easy Infix to Postfix Conversion Code

This code is designed for converting an infix equation(expression) into postfix  equation(expression) means Infix to Postfix. In this code you have to pass an equation or expression in infix form as string (character array) format, the code will convert the infix expression into postfix expression. In this code precedence of the operator is also considered. …

Easy Infix to Postfix Conversion Code Read More »

How to write a code for creating, accessing structure member

Structure related program for C Language Code for accessing structure and creating a marksheet like project. This code is for creating and accessing structure with an example using C Language. This is the best and easy code for learning Structure and it\’s use. Here each and every functions are used using most simple logic and …

How to write a code for creating, accessing structure member Read More »

Best Decimal to Binary conversion solution in 2023

Code for Decimal to Binary conversion For learning c code, students are advised to practice few basic codes, Decimal to Binary conversion is one of them. In C code practice, this program logic plays a very important role. So I have designed this code as easy as possible for the students. They will be able …

Best Decimal to Binary conversion solution in 2023 Read More »

Best Code for Large Number Addition in 2023

Code for Large Number Addition For learning c code in more advanced form, students are advised to practice few codes related to pointer, dynamic memory allocation. For learning pointer, dynamic memory allocation you should go through this code. This is Code for Large Number Addition. In C code practice, this Code for Large Number Addition …

Best Code for Large Number Addition in 2023 Read More »