The goal is for the function to say hi ("Hello User"), but it keeps telling me that my sayHi function is invalid. I'm not sure why.
#include <stdio.h>
#include <stdlib.h>
int main(){
    
    sayHi();
    return 0;
}
void sayHi () 
{
    
  printf ("Hello User");
}
 
     
    