Skip to content

Commit

Permalink
Update hello_world.c
Browse files Browse the repository at this point in the history
  • Loading branch information
SachindaBandara authored Oct 30, 2024
1 parent 09a4987 commit 6010cc9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions hello_world.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#include<stdio.h>
int main(){
printf("Hello, World!");
#include <stdio.h> // Include standard input-output library

int main() { // Main function where execution starts
printf("Hello, World!"); // Print "Hello, World!" to the console
return 0; // Return 0 to indicate successful execution
}

0 comments on commit 6010cc9

Please sign in to comment.