Chandu yadav

Chandu yadav

810 Articles Published

Articles by Chandu yadav

Page 36 of 81

Bootstrap Grid for multiple devices

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 496 Views

The following is an example showing the usage of Grid for multiple devices −Example           Bootstrap Example                                          Hello, world!                                      Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do                   eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut         ...

Read More

Bootstrap .pagination class

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 480 Views

Use the .pagination class to get the pagination on your page.You can try to run the following code to implement the .pagination class −Example           Bootstrap Example                                 Coding Examples       The following are the examples:                «          Code1          Code2          Code3          »          

Read More

Set Column Ordering in Bootstrap

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 1K+ Views

Write the columns in an order, and show them in another one. You can easily change the order of built-in grid columns with .col-md-push-* and .col-md-pull-*modifier classes where * range from 1 to 11.Example           Bootstrap Example                                          Heading                       Before Ordering                            I am on left                                        I am on right                                                       After Ordering                            I was on left                                        I was on right                                  

Read More

Bootstrap lead class

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 2K+ Views

The lead class in Bootstrap is used to add emphasis to a paragraph.You can try to run the following code to implement the lead class in Bootstrap −Example           Bootstrap lead class                                       Lead Example       This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is an example paragraph demonstrating the use of lead body copy.          

Read More

Bootstrap element styling

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 622 Views

Bootstrap styles elements with a light dotted border along the bottom and reveal the full text on hover.The HTML element provides markup for abbreviations or acronyms, such as NASA, HTTPS, ICC, etc.You can try to run the following to understand how Bootstrap styles the element −Example           Bootstrap abbr styling                                       NASA       ICC    

Read More

list-inline class in Bootstrap

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 488 Views

You can try to run the following code to implement the list-inline class in BootstrapExample           Bootstrap lists                                       Lists       Fruits (Ordered List)                Kiwi          Apple          Mango             Vegetables (UnOrdered List)                Tomato          Brinjal          Broccoli             Cars (Inline List)                BMW          Audi          Bentley          

Read More

dl-horizontal class in Bootstrap

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 4K+ Views

In definition list, each list item can consist of both the and the elements. stands for definition term, and like a dictionary, this is the term (or phrase) that is being defined. Subsequently, the is the definition of the . You can make terms and descriptions in line up side-by-side using class dl-horizontal.You can try to run the following code to implement the dl-horizontal class:Example           Bootstrap lists                                       Lists       Fruits (Ordered List)                Kiwi          Apple          Mango             Vegetables (UnOrdered List)                Tomato          Brinjal          Broccoli             Horizontal Definition List                Description 1          Item 1          Description 2          Item 2          

Read More

Add the border to the table with Bootstrap

Chandu yadav
Chandu yadav
Updated on 11-Mar-2026 803 Views

To add border to a table, use the table-bordered class. You can try to run the following code to implement the table-bordered class −Example           Bootstrap Table                                                Footballer Rank                                      Footballer                Rank                Country                                                            Messi                1                Argentina                                        Neymar                2                Brazil                                        Ronaldo                3                Portugal                                

Read More

How do malloc() and free() work in C/C++?

Chandu yadav
Chandu yadav
Updated on 28-Apr-2025 2K+ Views

Both malloc() and free() are used to manage memory at runtime. The malloc() is very useful because it allocates memory based on the program needs, while free() releases the memory. But the free() can lead to memory leakage, which is one of its disadvantages. What is malloc()? The function malloc() is used to allocate the requested size of bytes and it returns a pointer to the first byte of allocated memory. It returns null pointer, if it fails. Syntax Following is the basic syntax of malloc(): pointer_name = (cast-type*) malloc(size); Here, pointer_name : Any ...

Read More

C++ Program to Implement Max Heap

Chandu yadav
Chandu yadav
Updated on 07-Mar-2025 14K+ Views

In this article, we will write a C++ program that implements a Max Heap. A Max Heap is a binary tree where the value of each node is greater than or equal to the values of its children. We will explain how to create a Max Heap using arrays and implement operations like insertion and deletion. The article will cover the following topics: What is a Heap? What is Max Heap? What is Heapify? Max Heap Implementation Deletion from ...

Read More
Showing 351–360 of 810 articles
« Prev 1 34 35 36 37 38 81 Next »
Advertisements