11 questions
char* my_strcap(char* str1, char* str2){ char* result = (char*)malloc(sizeof(char) * 40);int i, j;if (result != NULL){ //String is stored in array form, so it is stored in each array index for (i = 0;...
« | - 2 - |
© 2024 OneMinuteCode. All rights reserved.