News

I'm working on a small project here, and need to change all spaces in a char array to underscores. Meaning that "One Two Three" is changed to "One_Two_Three".Currently, I'm using a function I ...
Notifications You must be signed in to change notification settings Fork 375 ...
The kludge way is to declare the string as not const. but this is not considered good practice if the function called might be designed to modify the string: plotLinear ( (char*)"A0", 0, 160); The ...