where is the wrong?
Attachments:
Answers
Answered by
1
in line 13 printf statement to print the sum value ..
in printf statement there is no need to put ampersand(&) before sum
if we put & ampersand before the value to be printed .... is just print sum's address location ...
The correct statement is printf("%d", sum);
is this amswer helps u?
in printf statement there is no need to put ampersand(&) before sum
if we put & ampersand before the value to be printed .... is just print sum's address location ...
The correct statement is printf("%d", sum);
is this amswer helps u?
Similar questions