#includestdio.hint main(){static int a[20];int i = 0;a[i] = i ;printf("%d, %d, %d\n", a[0], a[1], i);return 0;}
What will be the output of the following code snippet?# include stdio.h
void fun(int x)
{
x = 30;
}
int main()
{
int y = 18;
fun(y);
printf("%d", y);
return 0;
}