Question: Is this correct? /* Implement a call to the function getNumber from the main function. i.e. inside the main function create the necessary steps to
Is this correct?
/*
Implement a call to the function getNumber from the main function. i.e. inside the main function create the necessary steps to call the getNumber function. (5 points) Submit getNumber.txt file containing the C++ program */
#include
int getNumber(char *node, int **res) { return 0; }
int main() { char *node; int **res; getNumber(node, res); return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
