The goto command
for example
:start
title ""graphing calculator""
goto start
Answer:
length.
Explanation:
length variable determines the size of the array or the number of elements in the array.length variable is a final variable.It is a public field.It is only applicable for array it is not applicable for strings.It is also used to directly access the field member of the array.So we conclude that the answer is length.
Answer:
The risk is a buffer overflow.
Explanation:
Whatever the user passes as a command line argument, will be copied into the buffer. If the user passes more than 499 characters, the end of the buffer will be overwritten.
To solve it, compare the string length of argv[1] to 500 before copying, or even better, start using the new strcpy_s( ) function.
The Correct Answer is
True
<u><em>Have a good day! :)</em></u>