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