Week 3
Week 3
Palindrome:
Armstrong Number:
Description:
Armstrong number is a number that is equal to the sum of cubes of its digits.
For example 0, 1, 153, 370, 371 and 407 are the Armstrong numbers.
Let's try to understand why 153 is an Armstrong number.
153 = (1*1*1)+(5*5*5)+(3*3*3)
where:
(1*1*1)=1
(5*5*5)=125
(3*3*3)=27
So:
1+125+27=153
Fibonacci Series:
Description:
Prime or not:
Description:
1
Week 6:
Addition of a Matrix:
Description:
To add any two matrices in C programming, you have to ask the user to enter all
elements of both matrices. Now start adding the two matrices together to form a
new matrix. After adding two matrices, display the third matrix, which is the
addition result of the two matrices
Multiplication of a Matrix:
Description:
we are taking input from the user for row number, column number, first matrix
elements and second matrix elements. Then we are performing multiplication
on the matrices entered by the user.
Description:
int matrix[m][n];
Initialize the matrix: Next, we need to initialize the matrix with some values.