Articles on Trending Technologies

Technical articles with clear explanations and examples

C program to delete an array element using Pointers

Bhanu Priya
Bhanu Priya
Updated on 15-Mar-2026 4K+ Views

In C, deleting an element from an array involves shifting all subsequent elements one position to the left. This operation can be efficiently implemented using pointers to manipulate array elements directly through memory addresses. Syntax void deleteElement(int *array, int size, int position); // array: pointer to the array // size: current size of the array // position: 1-based position of element to delete Algorithm The algorithm to delete an element from an array using pointers − Declare and read the array size Allocate memory dynamically using malloc() Input array elements Read the ...

Read More

Physical Capital Vs Human Capital

Bitopi Kaashyap
Bitopi Kaashyap
Updated on 15-Mar-2026 486 Views

Physical capital and human capital are two fundamental types of assets that organizations require for successful operations. Physical capital refers to tangible, man-made assets like machinery, buildings, and equipment, while human capital represents the intangible skills, knowledge, and abilities of the workforce. Understanding Physical Capital Physical capital refers to investment inputs such as man-made items and factors of production owned by a business. This includes machinery, equipment, property, furniture, buildings, and electronic items used to transform raw materials into finished goods and services. Businesses require substantial investment in physical capital to start operations and maintain competitiveness. Without ...

Read More

The outline Shorthand Property in CSS

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 688 Views

The CSS outline shorthand property is used to draw a line around an element's border. Unlike the border property, the outline does not affect the element's dimensions or layout and is drawn outside the border area. Syntax selector { outline: outline-width outline-style outline-color; } Possible Values PropertyDescriptionValues outline-widthSpecifies the thickness of the outlinethin, medium, thick, or length units (px, em, etc.) outline-styleSpecifies the line style (required)dotted, dashed, solid, double, groove, ridge, inset, outset outline-colorSpecifies the color of the outlineColor names, hex values, rgb(), etc. Example: Basic Outline ...

Read More

C Program to insert an array element using pointers.

Bhanu Priya
Bhanu Priya
Updated on 15-Mar-2026 6K+ Views

In C programming, inserting elements into an array using pointers involves dynamically allocating memory and manipulating array elements through pointer arithmetic. This technique is useful when you need to add elements at specific positions during runtime. Syntax void insertElement(int *array, int size, int position, int element); int *ptr = (int*)malloc(size * sizeof(int)); Algorithm The algorithm to insert elements into an array using pointers − Declare and read the array size Allocate memory dynamically using malloc() Input array elements using pointer notation Read the insertion position and new element Validate position (must be ...

Read More

The outline-color Property in CSS

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 113 Views

The CSS outline-color property is used to set the color of an outline around an element. Unlike borders, outlines do not take up space and are drawn outside the element's dimensions. Syntax selector { outline-color: value; } Possible Values ValueDescription color nameNamed color like red, blue, green hexHexadecimal color like #ff0000 rgb()RGB values like rgb(255, 0, 0) rgba()RGB with alpha transparency hsl()Hue, saturation, lightness values hsla()HSL with alpha transparency Note: The outline-style property must be defined before using outline-color. Example: Basic Outline Color The following ...

Read More

Perfect Competition Defining Features

Bitopi Kaashyap
Bitopi Kaashyap
Updated on 15-Mar-2026 282 Views

Perfect competition represents an idealized market structure where numerous buyers and sellers trade homogeneous products under conditions of complete information and free market entry. In this theoretical framework, no single participant can influence market prices, which are determined purely by the forces of supply and demand. Key Features of Perfect Competition Large Number of Buyers and Sellers Perfect competition requires numerous participants on both sides of the market. No single firm can monopolize or significantly influence market conditions. This abundance ensures continuous market activity with balanced demand and supply forces. The presence of many buyers prevents ...

Read More

C program to sort an array in an ascending order

Bhanu Priya
Bhanu Priya
Updated on 15-Mar-2026 124K+ Views

In C programming, sorting an array in ascending order means arranging elements from smallest to largest value. This is a fundamental operation that can be implemented using various algorithms, with bubble sort being one of the most commonly taught approaches. Syntax // Basic bubble sort algorithm for (i = 0; i < n; i++) { for (j = i + 1; j < n; j++) { if (arr[i] > arr[j]) { // Swap ...

Read More

C program to sort an array in descending order

Bhanu Priya
Bhanu Priya
Updated on 15-Mar-2026 17K+ Views

Sorting an array in descending order means arranging elements from highest to lowest value. This is commonly achieved using various sorting algorithms, with bubble sort being one of the simplest approaches. Syntax // Bubble sort for descending order for (i = 0; i < n; i++) { for (j = i + 1; j < n; j++) { if (arr[i] < arr[j]) { // Swap elements ...

Read More

Static Positioning Using CSS

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 2K+ Views

CSS static positioning is the default positioning method for HTML elements. When an element has position: static, it appears in the normal document flow and is not affected by the top, right, bottom, or left properties. Syntax selector { position: static; } Key Points Static positioning is the default value for all HTML elements Elements are positioned according to the normal document flow CSS positioning properties (top, right, bottom, left) have no effect Elements cannot be moved from their natural position Example: Basic Static Positioning The ...

Read More

Outstanding Expenses

Bitopi Kaashyap
Bitopi Kaashyap
Updated on 15-Mar-2026 689 Views

Outstanding expense refers to expenses that have been incurred by a business during the current accounting period but have not been paid yet. These are liabilities that must be settled in the future and are recorded to ensure accurate financial reporting. Key Concepts Outstanding expenses represent obligations where a business has received goods or services but has not made payment. They arise due to timing differences between when expenses are incurred and when they are actually paid. These expenses must be recorded in the accounting period when they are incurred, regardless of when payment is made, following the ...

Read More
Showing 20411–20420 of 61,297 articles
Advertisements