Mandalika has Published 475 Articles

How to calculate transpose of a matrix using C program?

Mandalika

Mandalika

Updated on 02-Sep-2023 15:21:37

47K+ Views

Transpose of a matrixThe transpose of a matrix is the one whose rows are columns of the original matrix, i.e. if A and B are two matrices such that the rows of the matrix B are the columns of the matrix A then Matrix B is said to be the ... Read More

Inserting elements in an array using C Language

Mandalika

Mandalika

Updated on 02-Sep-2023 10:13:21

72K+ Views

We can insert the elements wherever we want, which means we can insert either at starting position or at the middle or at last or anywhere in the array.After inserting the element in the array, the positions or index location is increased but it does not mean the size of ... Read More

How to print a one-month calendar of user choice using for loop in C?

Mandalika

Mandalika

Updated on 06-Mar-2021 18:36:13

5K+ Views

The logic to print a one-month calendar is as follows −for(i=1;i

Write a C program to maintain cricketer’s information in tabular form using structures

Mandalika

Mandalika

Updated on 05-Mar-2021 12:14:40

5K+ Views

ProblemHow to store the cricketer’s data in tabular form in sorted order based on average runs using structures in C Programming language.SolutionLet’s try to enter the cricketer information such as name, age, no of matches and average runs he scored. It will be entered in the console at runtime using ... Read More

Write a C program to calculate the average word length of a sentence using while loop

Mandalika

Mandalika

Updated on 05-Mar-2021 12:11:51

726 Views

ProblemEnter a sentence at run time and write a code for calculating the average length of words that are present in a sentenceSolutionAlgorithmSTART Step 1: declare character, int and double variables Step 2: Enter any statement Step 3: while loop        Check condition stmt[i]=getchar()) != ''     ... Read More

Write a C program to print numbers in words using elseif statements

Mandalika

Mandalika

Updated on 05-Mar-2021 12:08:07

3K+ Views

ProblemWithout using a switch case, how can you print a given number in words using the C programming language?SolutionIn this program, we are checking three conditions to print a two-digit number in words −if(no99)entered number is not a two digitelse if(no==0)print first number as zeroelse if(no>=10 && no=20 && no=10 ... Read More

Write a C program to print the message in reverse order using for loop in strings

Mandalika

Mandalika

Updated on 05-Mar-2021 12:05:26

664 Views

Here we write a program to reverse the sentence without predefined functions. By using for loop, we can easily print statement in reverse order.Program 1#include int main(){    char stmt[100];    int i;    printf("enter the message:");    for(i=0;i=0;i--) //printing each char in reverse order    putchar(stmt[i]);    putchar('');   ... Read More

Generate an even squares between 1 to n using for loop in C Programming

Mandalika

Mandalika

Updated on 05-Mar-2021 11:56:52

970 Views

Even square numbers are - 22, 42, 62, 82,……… = 4, 16, 36, 64, 100, ………AlgorithmSTART Step 1: declare two variables a and n Step 2: read number n at runtime Step 3: use for loop to print square numbers         For a=2; a*a

Swapping numbers using bitwise operator in C

Mandalika

Mandalika

Updated on 05-Mar-2021 11:50:12

13K+ Views

ProblemHow to swap the numbers using the bitwise operator in the C programming language?SolutionThe compiler swap the given numbers, first, it converts the given decimal number into binary equivalent then it performs a bitwise XOR operation to exchange the numbers from one memory location to another.AlgorithmSTART Step 1: declare two ... Read More

Write a C program to reduce any fraction to least terms using while loop

Mandalika

Mandalika

Updated on 05-Mar-2021 11:47:58

1K+ Views

Reducing the fraction to the lowest terms means that there is no number, except 1, that can be divided evenly into both the numerator and the denominator.For example, 24/4 is a fraction, the lowest term for this fraction is 6, or 12/16 is a fraction the lowest term is 3/4.Now ... Read More

1 2 3 4 5 ... 48 Next
Advertisements