Posts

Showing posts from January, 2025

Singly Linked List in C with Code and Explanation

Image
                        Singly LinkedList (SLL)   A Singly Linked List is a linear data structure where each element (called a node ) points to the next node in the sequence.  It is a dynamic structure , meaning it can grow or shrink in size during runtime .  Structure of a Node:  Each node contains: - Data : The value stored in the node. - Next : A pointer / reference to the next node in the list . There are Five operation in SLL: 1) Insert - Insert the element in our node like, insert(34);                                                                            insert(3);                                       ...

By using CSS make a card in easy way with the help of HTML

How to make card with the help of CSS and HTML ..... This code can help to make in a proper way of your card using CSS and HTML. <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Document </ title >     < style >     * {         margin : 0 ;         padding : 0 ;             }     .cards {         display : flex ;         justify-content : center ;         flex-wrap : wrap ;         margin-top : 30px ;         row-gap : 30px ;         column-gap : 30px ;             }     .list1 {         display : flex...