CE 316 Quiz#2
-
#include <stdio.h> void modifyValue(int*, int, int*); int main() { // Initializing arrays and variable int x[] = {3, 1, 6}; int y[] = {0, 0, 0}; int b = 5; // Print initial values printf("%d, %d, %d, %d\n", *x, x[2], y[2], b); // Call the modifyValue function modifyValue(x, y[2], &b); // Pass the address of b // Print modified values printf("%d, %d, %d, %d\n", *x, x[2], y[2], b); return 0; } void modifyValue(int a[], int b, int* c) { while (b++ < 3) { a[b - 1] += *c; } *c = 0; }
-
output sordu