Bits, Bytes and Words

ForestDBin's Space

Home Archives TODO Collections
2024-05-14
hello world

hello.c

hello.c
1
2
3
4
5
6
#include <stdio.h>

main()
{
printf("hello, world\n");
}
1
2
3
4
5
6
7
$ cc hello.c
hello.c:3:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
3 | main()
| ^~~~
$ ./a.out
hello, world
$
Share
  • c
  • hello
Newer
The C Programming Language - annotation, 1
Older
The C Programming Language - annotation, 0

Categories

  • c
    • language
  • collections
    • tools
  • container
    • docker
  • hello world
  • language
    • c

Tags

  • c
  • container
  • docker
  • env
  • hello
  • howto
  • image
  • language
  • linux
  • philosophy
  • programming
  • python
  • registry
  • ssh
  • style
  • tidy
  • tool
  • virtual machine

Tag Cloud

c container docker env hello howto image language linux philosophy programming python registry ssh style tidy tool virtual machine

Archives

  • June 2025
  • May 2025
  • March 2025
  • November 2024
  • October 2024
  • September 2024
  • July 2024
  • June 2024
  • May 2024
  • April 2024
  • March 2024

Recent Posts

  • Basic Settings for Linux
  • 道法术器
  • Docker Registry
  • The C Programming Language - annotation, 8
  • The C Programming Language - annotation, 7
© 2025 Bill Dong
Powered by Hexo
Home Archives TODO Collections