Post History
C (gcc), 30 bytes main(){puts("Hello, World!");} Try it online! This is using GNU C extensions. GNU C allows main() over int main(), ss well as using puts without including stdio.h.
Answer
#1: Initial revision
# [C (gcc)], 30 bytes <!-- language-all: lang-c --> main(){puts("Hello, World!");} [Try it online!][TIO-lwyzhpff] [C (gcc)]: https://gcc.gnu.org/ [TIO-lwyzhpff]: https://tio.run/##S9ZNT07@/z83MTNPQ7O6oLSkWEPJIzUnJ19HITy/KCdFUUnTuvb//3/JaTmJ6cX/dYtLUmyTDc0B "C (gcc) – Try It Online" --- This is using GNU C extensions. GNU C allows `main()` over `int main()`, ss well as using `puts` without including stdio.h.