Sindhura Repala has Published 39 Articles

Explain insertion of elements in linked list using C language

Sindhura Repala

Sindhura Repala

Updated on 27-Jan-2025 15:37:10

3K+ Views

Linked List Representation Linked lists use dynamic memory allocation, allowing them to grow and shrink as needed. They are defined as a collection of nodes, each containing two parts: data and a link. A linked list is a linear data structure where each element is known as a node, is ... Read More

What are string searching functions in C language?

Sindhura Repala

Sindhura Repala

Updated on 24-Jan-2025 13:08:11

2K+ Views

String Searching Functions The C string functions are built-in functions used for various operations and manipulations on strings. These functions perform tasks such as copying, comparing, concatenation, and determining the length of strings. The library also provides several string-searching functions, which are included as follows − ... Read More

How to display a summary for a given <details> in HTML5?

Sindhura Repala

Sindhura Repala

Updated on 23-Jan-2025 11:55:57

306 Views

The Tag Summary in HTML To display a visible heading for the tag use the tag. Click the heading to hide or view the details. The first child element of the tag is the element. This tag specifies additional details that the user can open ... Read More

How to add a list item in HTML?

Sindhura Repala

Sindhura Repala

Updated on 23-Jan-2025 11:47:56

2K+ Views

Adding Ordered Unordered Lists To define a list item in HTML, use the tag. It can be used inside ordered lists (), unordered lists () and menu lists (). In an ordered list , the list items are displayed with numbers or letters. In an unordered list , and ... Read More

C Program to find the given number is strong or not

Sindhura Repala

Sindhura Repala

Updated on 23-Jan-2025 10:53:45

42K+ Views

Recursive Factorial Calculation A strong number is a number, where the sum of the factorial of its digits equals the number itself. In C programming, a factorial is the product of all positive integers less than or equal to a given number. To calculate the factorial of a number, we ... Read More

What are the different categories of functions in C Programming?

Sindhura Repala

Sindhura Repala

Updated on 21-Jan-2025 16:13:15

31K+ Views

Functions are categorized bases on the presence or absences of arguments and whether they return a value. A user-defined function is one that is defined by the user when writing any program, as opposed to library functions that have predefined definitions. To meet specific requirements, the user must develop their ... Read More

Explain unformatted input and output functions in C language

Sindhura Repala

Sindhura Repala

Updated on 21-Jan-2025 15:58:29

8K+ Views

Unformatted input and output functions read a single input sent by the user and permit the display of the value as the output at the console. Unformatted input functions The unformatted input functions in the C programming language are used only for character data type or character string/array and cannot be ... Read More

How to include an option in a drop-down list in HTML?

Sindhura Repala

Sindhura Repala

Updated on 21-Jan-2025 15:50:21

2K+ Views

Creating a Dropdown List To create a drop-down list in HTML, we use the tag, which is generally used in forms to collect user input. To refer to the form data after submission, we use the name attribute. Without the name attribute, no data will be collected from the ... Read More

How do we create an image map in HTML?

Sindhura Repala

Sindhura Repala

Updated on 21-Jan-2025 15:37:40

2K+ Views

Clickable Areas in HTML To create clickable areas within an image, we use an image map, which is defined using the tag, with both opening and closing tags: . An image is a list that coordinates specific areas of an image, allowing different parts of the image to ... Read More

How to display completion progress of a task in HTML5?

Sindhura Repala

Sindhura Repala

Updated on 21-Jan-2025 11:01:09

442 Views

To visually demonstrate the completion of task or goal, we use the element. The max and value attributes show the progress made towards task completion. The element offers a visual representation of the completion status of task. It's typically displayed as a progress bar, indicating how much of ... Read More

Advertisements