I'm looking at C-based Solana Smart Contracts and I see -> operator in the code.  How do I search for this as I don't even know what to call it (I have tried with no results)?
/**
 * @brief C-based Helloworld BPF program
 */
#include <solana_sdk.h>
uint64_t helloworld(SolParameters *params) {
  if (params->ka_num < 1) {
    sol_log("Greeted account not included in the instruction");
    return ERROR_NOT_ENOUGH_ACCOUNT_KEYS;
  }
  // Get the account to say hello to
  SolAccountInfo *greeted_account = ¶ms->ka[0];
}
 
     
     
    