InterviewSolution
Saved Bookmarks
| 1. |
Find errors (if any) in the following code; correct it and write the output : #include int sqr ( int ); void main( ) { int number = 5, result; result = sqr( ); printf("The square of 5 is %d.“, result) } int sqr(int num1) { int answer; answer = num1 * num1; print (answer); } |
|
Answer» woooooowExplanation: |
|