I need help verifing. If you need more information let me know, but I am a beginner. Just need help with the verifyValue.cpp
what kind of code or functions would you suggest.
Thanks
In options 1 and 2, the user will input the ID, Type, Description, Quantity on Hand, and Unit Cost as one string with the values separated by commas. Use the function strtok to parse the input into separate values. For the numeric values, call the function verifyValue to verify that the input string is a numeric value. Then call the functions atoi and atof to convert the input into an
One new Function
Create a new function to verify the numeric input values. This function will be in a separate source file.
verifyValue.cpp
This function will determine if a string contains a valid numeric value. It will return true or false.