What will the output of this code in C Programming Language and why?
int arr[3] = {1, 2, 3};
if(&arr[0] == &arr){
printf("They are the same!");
}else {
printf("Not same");
}
Show Answer
The name of the array is a pointer to the first item of the Array. So it will print "They are the same!"