About 51 results
Open links in new tab
  1. Where does 'Hello world' come from? - Stack Overflow

    Brian Kernighan actually wrote the first "hello, world" program as part of the documentation for the BCPL programming language developed by Martin Richards. BCPL was used while C was being developed …

  2. Where does the "Hello World!" example come from? [duplicate]

    May 13, 2014 · Closed 15 years ago. Possible Duplicate: Where does ‘Hello world’ come from? "Hello world!" is the most commonly used example I can think of, yet I don't really know where it came from. …

  3. What was the first Hello World Application written in?

    Mar 6, 2017 · 0 I believe that the first Hello World was written in C and published in the book The C Programming Language.

  4. How to write a Hello World in C - Stack Overflow

    Aug 23, 2012 · gcc hello.c -o hello && hello (Replace the 'hello.c' with your filename, and 'hello' with the name you want to put with your .exe file) Remember My computer is Windows. And this compile …

  5. Hello world in Java: Understanding the concept versus in python

    Apr 18, 2012 · 3 I am trying to learn Java now and this is the hello world program and it already have started to baffle me. I am used to python and I found this tutorial (ebook) simple and concise for …

  6. Malwarebytes gives trojan warning for a basic C# "Hello, World!" …

    Dec 23, 2024 · 86 Basically, I just ran a scan of my computer with Malwarebytes (updated the definitions before running), and it said my "Hello, World!" program written in C# has a trojan. I know for a fact …

  7. c - Can you explain this 'Hello world' program? - Stack Overflow

    Jun 28, 2009 · printf("Hello, world!\n"); This line of code calls the standard input/output function printf that is part of the C Standard Library. The function printf causes output to be displayed on the terminal; it …

  8. How to write hello world in assembly under Windows?

    Jun 21, 2009 · I wanted to write something basic in assembly under Windows. I'm using NASM, but I can't get anything working. How do I write and compile a hello world program without the help of C …

  9. Proper Hello, World! in C - Stack Overflow

    Sep 10, 2012 · What is the correct Hello, World! program in C? Since the first page of Google results for "c hello world" vary greatly and many are old C, I would like the standard version in one place ...

  10. vba - Hello world in VBS - Stack Overflow

    Jun 19, 2016 · Module Hello Sub Main() MsgBox("Hello, World!") ' Display message on computer screen. End Sub End Module When I run it with cscript "hello world.vbs", from cmd. I'm getting an …