int main() { // Strings in printf() need quotes"> int main() { // Strings in printf() need quotes" />
Easy Tutorial
❮ C Macro Va_Start C Exercise Example89 ❯

C Language Example - Output "Hello, World!"

C Language Examples

Using printf() to output "Hello, World!".

Example

#include <stdio.h>
int main()
{
   // Strings in printf() need quotes
   printf("Hello, World!");
   return 0;
}

Output:

Hello, World!

C Language Examples

❮ C Macro Va_Start C Exercise Example89 ❯