#include #include #define MAX 10 #define TWENTY 20 /* Sample code from Sept 5 in class Discussed input with scanf and arithmetic */ int summa(int a[MAX], int c); int bubble(int A[MAX], int n); int main(void) { int i, var1, var2=5,salesroomamt = 2; float m, money = 3.0; char sym; char instring[512]; //Read name into string to test length char salesname[23][41]; //Array of room names of correct length int arr1[10] = {0}; int arr2[MAX] = {2,4,6,8,10,12,14}; float arr3[MAX]; int myarr1[TWENTY] = {7, 2, 12,9,4,10,8,6,11,1,5,3}; sym = 't'; for (i = 0; i A[i+1]) { temp = A[i]; A[i] = A[i+1]; A[i+1] = temp; } return n; }