print hello world in c code example
Example 1: hello world in c
int main()
{
printf("Hello World");
return 0;
}
Example 2: c hello world
int main()
{
printf("Hello, World!\n");
}
Example 3: c print hello world
int main() {
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
}
Example 4: how to print hello world in c
echo "Hello World"
Example 5: how to print hello world in c
int main()
{
printf("Hello world");
return 0;
}
Example 6: print hello world in c
int main() {
printf("Hello, World!");
return 0;
}