Server Side Programming Articles

Page 914 of 2109

How to perform the arithmetic operations on arrays in C language?

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

In C programming, arrays allow us to store multiple related data items under a single name. We can perform arithmetic operations like addition, subtraction, multiplication, division, and modulus on corresponding elements of two arrays. For example, int student[30]; declares an array named student that can hold 30 integer values. Array Operations Searching − Finding whether a particular element is present in the array Sorting − Arranging elements in ascending or descending order Traversing − Processing every element sequentially Inserting − Adding new elements to the array Deleting − Removing elements from the array Syntax ...

Read More

C program to replace all occurrence of a character in a string

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

In C programming, replacing characters in a string is a common string manipulation task. This involves searching for a specific character and replacing it with another character either for all occurrences or just the first occurrence. Syntax for(i = 0; string[i] != '\0'; i++) { if(string[i] == old_char) { string[i] = new_char; } } Method 1: Replace All Occurrences This method replaces every occurrence of a character in the string − #include #include ...

Read More

How to find the product of given digits by using for loop in C language?

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

In C programming, finding the product of digits involves extracting each digit from a number and multiplying them together. This is commonly done using loops to repeatedly divide the number by 10 and extract the remainder. Syntax for(product = 1; num > 0; num = num / 10) { rem = num % 10; product = product * rem; } Method 1: Using For Loop The for loop approach initializes the product to 1 and continues until all digits are processed − #include ...

Read More

How to swap two arrays without using temporary variable in C language?

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

In C programming, swapping two arrays without using a temporary variable can be achieved using arithmetic or bitwise operations. This technique exchanges the contents of two arrays by manipulating the values directly, avoiding the need for additional memory space. Syntax for(i = 0; i < size; i++) { array1[i] = array1[i] + array2[i]; array2[i] = array1[i] - array2[i]; array1[i] = array1[i] - array2[i]; } Method 1: Using Arithmetic Operations This method uses addition and subtraction to swap array elements − ...

Read More

C program to find palindrome number by using while loop

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

A palindrome number is a number which remains the same when its digits are reversed. For example, 121, 1331, and 7557 are palindrome numbers. In C programming, we can check if a given number is a palindrome by using a while loop to reverse the number and then comparing it with the original. Syntax while (condition) { // Extract last digit remainder = number % 10; // Build reversed number reversed = reversed * 10 + remainder; ...

Read More

C program to convert centimeter to meter and kilometer

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

In C programming, converting between different units of length is a common task. This program demonstrates how to convert centimeters to meters and kilometers using simple mathematical formulas. Conversion Formulas 1 Meter = 100 Centimeters 1 Kilometer = 100000 Centimeters Syntax meter = centimeter / 100.0; kilometer = centimeter / 100000.0; Algorithm The algorithm to convert centimeter into meter and kilometer is as follows − Step 1: Declare variables for centimeter, meter, and kilometer. Step 2: Read length in centimeters from user input. Step 3: Convert to meters ...

Read More

C program to find the sum of arithmetic progression series

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

An arithmetic progression (A.P.) is a sequence of numbers where each term after the first is obtained by adding a constant value called the common difference. This C program calculates the sum of an A.P. series using the mathematical formula. Syntax Sum of A.P. Series: S_n = n/2 * (2a + (n - 1) * d) nth term of A.P. Series: T_n = a + (n - 1) * d Where: a = first term n = number of terms d = common difference S_n = sum of n terms Example: Calculate ...

Read More

C program to generate an electricity bill

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

In C, generating an electricity bill involves calculating charges based on different rate slabs depending on units consumed. Higher consumption leads to higher per-unit rates, implementing a progressive billing system commonly used by utility companies. Syntax if (units < slab1_limit) { amount = units * rate1; fixed_charge = charge1; } else if (units

Read More

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

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
Showing 9131–9140 of 21,090 articles
« Prev 1 912 913 914 915 916 2109 Next »
Advertisements