304 views
1 votes
1 votes
what is the significance of the value in the integer pointed to by j when the function completes..

<a>.it points to the last element in the list

<b>.it points to the first element in the list

<c>.it points to the first and last element in the list

<d>.all of the above

Please log in or register to answer this question.

Related questions

3 votes
3 votes
2 answers
1
Aghori asked Jul 14, 2017
1,151 views
#include <stdio.h int main() { int *p = (int *)20; int *q = (int *)30; printf("%d", q - p); }Explain which one of the following is correct?Compilation error.102None of th...
1 votes
1 votes
1 answer
4