Skip to content

Commit e49cbea

Browse files
author
Steven Copeland
authored
Merge pull request #2691 from AzzouN/HelloInC
printing Hello World! in c language
2 parents c010150 + 46d3ed8 commit e49cbea

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

scripts/hello_world_AzzouN.c

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// LANGUAGE: C
2+
// AUTHOR: Azzeddine NACER
3+
// GITHUB: https://github.com/AzzouN
4+
#include <stdio.h>
5+
#include <stdlib.h>
6+
7+
int main(int argc, char const *argv[]) {
8+
printf("Hello, World!");
9+
return 0;
10+
}

0 commit comments

Comments
 (0)