Articles on Trending Technologies

Technical articles with clear explanations and examples

How to add two complex numbers by passing structure to a function in C language?

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

In C programming, complex numbers can be represented using structures with real and imaginary parts as members. To add two complex numbers, we pass the structure variables to a user-defined function that performs the addition and returns the result. Syntax typedef struct complex { float real; float imag; } complex; complex addition(complex num1, complex num2); Algorithm The following steps outline the process for adding two complex numbers using structures − Step 1: Define a structure with real and imaginary parts Step 2: Declare ...

Read More

Wealth Management

Praveen Varghese Thomas
Praveen Varghese Thomas
Updated on 15-Mar-2026 491 Views

Wealth management is a comprehensive financial service that combines investment management, financial planning, and estate planning to help high-net-worth individuals and families preserve, grow, and transfer their wealth. It provides a holistic approach to managing complex financial situations while minimizing risks and tax liabilities. The primary goal is to create long-term financial security and ensure wealth preservation across generations. Key Components of Wealth Management Wealth management encompasses several interconnected financial services designed to address all aspects of an individual's financial life: Investment Management − Professional portfolio management to achieve long-term growth while controlling risk through diversification and ...

Read More

What do you mean by static memory allocation in C programming?

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

Static memory allocation in C refers to memory allocation that happens at compile time. The memory size and location are determined before the program runs, and once allocated, the memory cannot be resized during program execution. Static Memory Compile Time Fixed Size Dynamic Memory Runtime Variable Size Memory Allocation Types Examples: Arrays, Local variables, Global variables Examples: malloc(), calloc(), realloc() Syntax ...

Read More

The border-width Property in CSS

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 124 Views

The CSS border-width property is used to specify the width of an element's border. You can set the width for all sides at once or control individual sides using specific properties. Individual border width properties include − border-top-width border-right-width border-bottom-width border-left-width Syntax selector { border-width: value; } Possible Values ValueDescription thinA thin border (typically 1px) mediumA medium border (typically 3px) thickA thick border (typically 5px) lengthA specific width in px, em, rem, etc. Example: Thick Border The following example demonstrates a thick ...

Read More

Underbanked

Praveen Varghese Thomas
Praveen Varghese Thomas
Updated on 15-Mar-2026 263 Views

Underbanked individuals and households have limited access to traditional banking services such as checking accounts, savings accounts, credit cards, and loans. This financial exclusion affects millions of people worldwide and can significantly impact their ability to build wealth, establish credit, and achieve financial stability. Key Concepts Being underbanked means having minimal access to mainstream financial services offered by traditional banking institutions. Unlike unbanked individuals who have no access to banking services, underbanked people may have basic accounts but rely heavily on alternative financial services like payday loans, check-cashing services, or pawnshops to meet their financial needs. Underbanked ...

Read More

Write a C program to demonstrate post increment and pre increment operators

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

In C programming, the increment (++) and decrement (--) operators are used to increase or decrease a variable's value by 1. These operators can be applied in two forms: pre-increment/decrement and post-increment/decrement, which behave differently in expressions. Syntax /* Pre-increment/decrement */ ++variable; --variable; /* Post-increment/decrement */ variable++; variable--; Pre-Increment Operator (++variable) In pre-increment, the operator is placed before the operand. The value is first incremented and then the operation is performed on it. For example − z = ++a; // First: a = a + 1, Then: ...

Read More

How to create and style borders using CSS?

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 143 Views

We can define borders for an element and style them using CSS. The CSS border property is used to define the border properties for an element. It is a shorthand for border-width, border-style and border-color. Furthermore, images can be specified as a border. Syntax selector { border: width style color; } Possible Values PropertyDescriptionValues border-widthDefines the thickness of the borderthin, medium, thick, or length (px, em, rem) border-styleDefines the style of the bordersolid, dashed, dotted, double, groove, ridge, inset, outset, none border-colorDefines the color of the bordercolor name, hex, ...

Read More

Write C program using isupper() function

Bhanu Priya
Bhanu Priya
Updated on 15-Mar-2026 275 Views

In C, the isupper() function is used to check if a character is an uppercase letter (A-Z). It is defined in the ctype.h header file and returns a non-zero value if the character is uppercase, otherwise returns 0. Syntax int isupper(int ch); Parameters: ch − The character to be checked (passed as int). Return Value: Non-zero if the character is uppercase, 0 otherwise. Example 1: Counting Uppercase Letters Using isupper() This program counts the total number of uppercase letters in a string using the isupper() function − #include #include ...

Read More

Tax-Saving Bonds

Praveen Varghese Thomas
Praveen Varghese Thomas
Updated on 15-Mar-2026 279 Views

Tax-saving bonds are debt instruments issued by government entities and public sector undertakings that offer investors the dual benefit of tax deductions and fixed returns. These bonds help reduce taxable income while providing a secure investment avenue for long-term wealth creation. Key Features Lock-in Period − Typically 5-15 years with no premature redemption Tax Deduction − Eligible under Section 80C up to ₹1.5 lakh annually Fixed Returns − Predetermined interest rates ranging from 5-8% per annum Low Risk − Backed by government or PSUs, ensuring capital ...

Read More

The padding shorthand Property in CSS

AmitDiwan
AmitDiwan
Updated on 15-Mar-2026 379 Views

The padding property in CSS is a shorthand property that allows you to set the inner spacing for all four sides of an element in a single declaration. It controls the space between an element's content and its border. Syntax selector { padding: value; } Possible Values Number of ValuesDescriptionOrder 1 valueApplied to all four sidestop, right, bottom, left 2 valuesFirst = top/bottom, Second = left/rightvertical, horizontal 3 valuesFirst = top, Second = left/right, Third = bottomtop, horizontal, bottom 4 valuesClockwise from toptop, right, bottom, left Example ...

Read More
Showing 20531–20540 of 61,297 articles
Advertisements