c syntax to print hello code example
Example 1: print hello world in c
int main() {
printf("Hello, World!");
return 0;
}
Example 2: print hello world in c language
#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
}