I'm not a C++ developer but found my self doing this. What does r
in the following code example represents, and what is the c# code equivalent?
#include <iostream>
using namespace std;
int main()
{
cout<<"Value:\n";
uint32_t k[62];
uint32_t* r = k;
*r++;
cout<<*r;
return 0;
}