Answered You can hire a professional tutor to get the answer.
Need assistance with debugging. #include stdio.h Int square(int y);//function prototype //main function Int main() { Int number; Printf("Enter a...
Need assistance with debugging.
#include <stdio.h>
Int square(int y); //function prototype
//main function
Int main()
{
Int number;
Printf("Enter a value: ");
Scanf("d%", &number);
Printf("nThe Square of the number is %dnn", square(number)); // Function call
Int saquare(int y) //function definition
{
Return y * y;
}
Return 0;
}