0% found this document useful (0 votes)
8 views

Program 1

This short C program prints the text "Hello World!" followed by a special character to the screen and returns a success code of 0 to indicate the program executed as expected. It includes the standard input/output library and defines a main function that performs the print operation and returns.

Uploaded by

ion2006
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)
8 views

Program 1

This short C program prints the text "Hello World!" followed by a special character to the screen and returns a success code of 0 to indicate the program executed as expected. It includes the standard input/output library and defines a main function that performs the print operation and returns.

Uploaded by

ion2006
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
You are on page 1/ 1

#include <stdio.

h>

int main(void)
{
printf("Hello World!\x01");
return 0;
}

You might also like