Hi, I need some help. I need to convert a series of words into title case without using the toupper or tolower and similar functions. Here;s my sample initial code.
Code:#include <stdio.h> #include <stdlib.h> #include <string.h> char formatHere(char *firstword, char *secondword); { //I need some help here. return; } int main() { char string[16], string2[16]; string='i nEed to ConvErt thiS'; string2 = 'aLso tHis-onE'; formatHere(*string, *string2); } Output should be. I Need To Convert This Also This-One



LinkBack URL
About LinkBacks




