Q: eg x[0]= 30 x[1]= 12 x[2] = 51 x[3] = 17 x[4] = 45 x[5] = 62 eg the sum for this list would be ... A: Like this - #include<stdio.h> #include<conio.h> #define N 6 int main() { int x[] = {30, 12, ...
Q: Your previous answer was very helpful and it did solve the problem. But I have trouble ... A: the variable "inputstr" contains the original string without the "*" character. We are creating a ...
Q: For the following program, I understand how to use strlen(), but I couldn't print out a string with ... A: should be something like this - char inputstr[30], outputstr[60]; int len=0,i=0,j=0,k=0; ...