
C++ equivilant of Basic MID$
Question: I need to test for a certain char in a char array.For example, in BASIC I would have: if mid$(string,1,1) = “`” then blah blah blah…. How would I do this in C/C++? Note: I’m still new to C++ 😛 Compiler == Turbo C++ 3.0(Dos) Answer: Normally, you could