Programming in C 14 Chapter 3 section 37 and Chapter 5 secti
Programming in C, 1-4
Chapter 3 section 3.7, and Chapter 5 section 5.8 of Delores Etter’s Engineering Problem Solving with C. Answer the questions below in a typed document, numbered appropriately. Thank you!
Solution
1) int timedata[n]; --> here we have given n as per assumption in question that n has been already initialised
2) int wavedata[2][10];
3) int wavedata[2][n] ; but here we need to make sure that we define n before declaring array
// int n= 20;
