how to print hi in c

#include <stdio.h>

int main() {
    printf("hi\n");
    return 0;
}