how would you write these exercises in C language? i have some problems with them
1)having a two-dimensional array A [100] [100], initialize A [j] = i * j, then print the sum and product of all elements and put in another array B the maximum of each row. Then find the sum of all the odd numbers.
2)a program that creates an array of structures where each structure contains a number and a pointer pointing to the next location in the array
3)a program that reads characters from a text file and prints only those that repeat and how many times they repeat
4)program that reads integers from files and puts them in arrays
5)read characters from a file and print the sum of odd values
6)given two 3-index arrays, add them and put the result in a third 3-index array
1)having a two-dimensional array A [100] [100], initialize A [j] = i * j, then print the sum and product of all elements and put in another array B the maximum of each row. Then find the sum of all the odd numbers.
2)a program that creates an array of structures where each structure contains a number and a pointer pointing to the next location in the array
3)a program that reads characters from a text file and prints only those that repeat and how many times they repeat
4)program that reads integers from files and puts them in arrays
5)read characters from a file and print the sum of odd values
6)given two 3-index arrays, add them and put the result in a third 3-index array