#include <stdio.h>
#define SIZE 5
void modifyElement1 (int b []);
void modifyElement2 (int e);
int main (void) {
int a[SIZE] = {0, 1, 2, 3, 4};
modifyElement1 (a);
printf ("%d ", a[3]);
modifyElement2 (a[3]);
printf ("%d", a[3]);
return 0;
}
void modifyElement1 (int b[]) {
b[3] *= 2;
}
void modifyElement2 (int e) {
e *= 2;
}