Discussion :: Pointers
-
What will be the output of the program ?
#include
int main() { int i, a[] = {2, 4, 6, 8, 10}; change(a, 5); for(i=0; i4; i++) printf("%d, ", a[i]); return 0; } void change(int *b, int n) { int i; for(i=0; i 1) = *(b+i)+5; }
Answer : Option B
Explanation :
No answer description available for this question.
Be The First To Comment