0% found this document useful (0 votes)
34 views1 page

Simple C Program: Hello World

This C program prints the text "Hello, world!" to the screen. It includes the standard input/output header file and contains a main function that uses the puts function to display the message and returns 0 to indicate the program executed successfully.

Uploaded by

Bob Smith
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views1 page

Simple C Program: Hello World

This C program prints the text "Hello, world!" to the screen. It includes the standard input/output header file and contains a main function that uses the puts function to display the message and returns 0 to indicate the program executed successfully.

Uploaded by

Bob Smith
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

/* hello.

c */

#include <stdio.h>

int main(void)
{
puts(Hello, world!);
return 0;
}

You might also like