Hi !
Is there a predefined function in C which could find for an arithmetic operator from a given array?
Example. szArray[]={"123*321"};
How do I look for * from the array above?
Thanks for you help.
Printable View
Hi !
Is there a predefined function in C which could find for an arithmetic operator from a given array?
Example. szArray[]={"123*321"};
How do I look for * from the array above?
Thanks for you help.
strstr,strchr
Thank you!