I came across this problem while taking the online quiz when i tested it in the online ide(Geeks For Geeks) in C language it actually giving the same result but in the test its answer was False.
#include <stdio.h>
int main() {
int arr[2] = {1,2};
printf("%d %d",arr,&arr);
return 0;
}
Output
-1134751264 -1134751264