EX A 1 2 3 4 5 6 7 8 9 B 1 2 3 6 4 5 6 15 …
i) Check if the matrix is symmetric. ii) Display the trace of the matrix (sum of diagonal elements). iii) Check if the …
Program #include<stdio.h> void accept(int [10][10],int,int); void add(int [10][10],int [10][10],int,int); v…
Program #include <stdio.h> void main() { static int array[10][10]; int i, j, m, n; printf(&q…
Program #include <stdio.h> int cal(int); int main() { int n; printf("Enter the number of eleme…
Example 3456 6 5 4 3 Program #include <stdio.h> #include <math.h> int rev(int, in…
fib(n) = 1 if n = 1 or 2 = fib(n-2) + fib(n-1) if n>2 Progr…