Skip to content

Commit 4ad0c8c

Browse files
committed
renamed to more descriptive names
1 parent 24a65aa commit 4ad0c8c

6 files changed

+5
-5
lines changed

Array Questions/q1.c renamed to Array Questions/1_largest_smallest.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ int main(){
2020
}
2121
printf("Largest: %d, smallest: %d\n",largest, smallest);
2222
return 0;
23-
}
23+
}

Array Questions/q2.c renamed to Array Questions/2_read_age_of_40_sort_them.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ int main(){
1010
c++;
1111
}
1212
printf("Number of students between 15 to 22: %d\n", c);
13-
}
13+
}

Array Questions/q3.c renamed to Array Questions/3_arrange_ascending.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ int main(){
2121
printf("%d\t", a[i]);
2222
}
2323
return 0;
24-
}
24+
}

Array Questions/q4.c renamed to Array Questions/4_transpose_matrix.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ int main(){
2222
}
2323
printf("\n");
2424
}
25-
}
25+
}

Array Questions/q5.c renamed to Array Questions/5_sum_of_matrix.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ int main(){
2323
printf("\n");
2424
}
2525
return 0;
26-
}
26+
}

0 commit comments

Comments
 (0)