I'm probably facing the stupidest error so far. I was studying for my programming final exam in Visual Studio 2022 and my arrays suddenly stopped working. I define the array like this,
int arr[10] = {};
But when I try to use array functions for my array,
arr.
After putting '.', IntelliSense says "No members available" and no array functions listed.
Is this a bug or am I just missing something here?
Thanks a lot.