C "Hello, World!" Program
www.programiz.com › c-programming › examplesC "Hello, World!" Program To understand this example, you should have the knowledge of the following C programming topics: C Input Output (I/O) Program to Display "Hello, World!" #include <stdio.h> int main() { // printf () displays the string inside quotation printf("Hello, World!"); return 0; } Run Code Output Hello, World! How "Hello, World!"