Print hello code in C program

#include <stdio.h>

int main() {
    printf("hello");     // print the text in 
}

Output:-

hello