Hello World! is a standardized minimum computer program, intended eg as an example for beginners, or as a comparison of different programming languages, for advanced users. Hello World! is an icon of computer culture, with significance beyond its utility or pedagogy roles.
in C:
#includeint main() { printf("Hello, world!\n"); }