Skip to content

Instantly share code, notes, and snippets.

@iamnickson
Created May 10, 2021 06:18
HelloWorld Program in C Programming Language
#include <stdio.h>
int main() {
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment