Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

the frst version of the markdown file #75

Open
wants to merge 1 commit into
base: cdl-24
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added helloworld-print.pdf
Binary file not shown.
28 changes: 28 additions & 0 deletions helloworld.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Helloworld Programs

![Hello_world_image](helloworld.png)

We list below Helloworld programs for different programming languages, i.e. programs that print "Hello, World!". Thespecified compiler or interpreter is required for each programming languages.The table below summarizes the programs:

|Languages:| Language (Spec) Site
|----------|----------------------|
| C | [The Standard - C](https://www.iso-9899.info/wiki/The_Standard)
| C++ | [The Standard - C++](https://isocpp.org/std/the-standard)
| Java | [Java](https://docs.oracle.com/javase/8/docs/technotes/guides/language/)

# C

``` C
#include <stdio.h>int main(void){
puts("Hello, World!");
return 0;
}
```
## Build with
``` C
gcc -Wall -o helloworld helloworld.c
```
## Run with:
``` C
./helloworld
```
Binary file added helloworld.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.