Tagged Questions

Short programs that output a simple greeting, typically "Hello world."

learn more… | top users | synonyms

128
votes
31answers
41k views

“Hello World” in less than 20 bytes [closed]

We have had an interesting competition once, where everyone would write their implementation of hello world program. One requirement was that is should be less than 20 bytes in compiled form. the ...
115
votes
15answers
6k views

Hello world in C with no semi-colons?

I recently heard this was used as an interview question. I suspect there is a very simple answer; I must be over-thinking it. Can you write Hello World in C without using any semi-colons? If ...
108
votes
68answers
20k views

Programming challenge: can you code a hello world program as a Palindrome?

So the puzzle is to write a hello world program in your language of choice, where the program's source file as a string has to be a palindrome. To be clear, the output has to be exactly "Hello, ...
45
votes
37answers
3k views

What is a good first C app to build, besides “Hello World”

I'm learning the C language on my Mac with Xcode. I've created a "Hello World" app, and played around with simple maths. What should be my next goal? If someone was to ask me about PHP for example, ...
40
votes
21answers
6k views

What language has the longest “Hello world” program?

In most scripting languages, a "Hello world!" application is very short: print "Hello world" In C++, it is a little more complicated, requiring at least 46 non-whitespace characters: #include ...
36
votes
6answers
2k views

hello world in C without semicolons and without IF/WHILE/FOR statements

My friend says it's possible to write a C program that will print "hello world" without IF/WHILE/FOR and without semicolons. After minimal research I told her it was not possible. Is it possible?
22
votes
14answers
2k views

How do I code and compile an Amiga application? [closed]

I would like to program an application for the Amiga, just for fun! Please could someone post a step by step howto based on the following? Exactly what programming tools I should use, are there any ...
19
votes
4answers
504 views

C Code: How does these even work?

I just saw this here #include <stdio.h> int main(int argc, char *argv[printf("Hello, world!\n")]) {} What this does is print "Hello World!" But what's actually going on here? The best I ...
15
votes
2answers
395 views

How does this “hello world!” program work?

int main(void) { return('yes', *"no", **main, *********printf) ("hello world!\n") *0; } outputs hello world!, but how does it actually work?
14
votes
6answers
12k views

how to write hello world in assembler under windows?

Hi I wanted to write something basic in assembly under windows, I'm using nasm, but I can't get anything working. How to write and compile hello world without help of c functions on windows? thx
12
votes
2answers
484 views

Plotting 'Hi' in MATLAB

I wished to plot this 'Hi', which may be 'Hello World' graphical equivalent in MATLAB. Haven't been able to do it. Any suggestions are welcome.
12
votes
8answers
492 views

Beyond Hello World

When exploring a new language, framework, IDE etc. we all start with Hello World, but where do you go after that? The process of writing a Hello World app will not give you the experience to begin ...
12
votes
3answers
908 views

Hello World in Python

I am trying to learn Python, however I tried to run a script that is LITERALLY just: print "Hello, World!" And I get this error: File "hello.py", line 1 print "Hello, World!" ...
9
votes
2answers
221 views

What would a SPDY “Hello world” look like?

I just finished skimming the SPDY white paper and now I'm interested in trying it out. I understand that Google is serving content over SSL to Chrome using SPDY. What's the easiest way to set up and ...
9
votes
10answers
12k views

Android-Hello World

I'm currently learning how to create android applications so I started with the basic "Hello World" tutorial over at the Android Developers home page. The code is quite simple but when I run it(I'm ...
9
votes
4answers
731 views

Hello world in Prolog

I'm tearing my hair out trying to find how to just write a Hello World program in Prolog. I just want to create a program that runs like so: > ./hw Hello, world! > The problem is that every ...
9
votes
5answers
463 views

Hello world without using libraries

This was an onsite interview question and I was baffled. I was asked to write a Hello world program for linux.. That too without using any libraries in the system. I think I have to use system calls ...
8
votes
6answers
744 views

Help a beginner with a C++ hello world!

Hey, my question is simple: #include <iostream> int main() { const std::string exclam = "!"; const std::string message = "Hello" + ", world" + exclam; std::cout << message; ...
7
votes
4answers
1k views

R from C — Simplest Possible Helloworld

What is the simplest possible C function for starting the R interpreter, passing in a small expression (eg, 2+2), and getting out the result? I'm trying to compile with MingW on Windows.
7
votes
2answers
6k views

Complete C++ i18n gettext() “hello world” example

I am looking for a complete i18n gettext() hello world example. I have started a script based upon A tutorial on Native Language Support using GNU gettext by G. Mohanty. I am using Linux and G++. ...
7
votes
5answers
2k views

Where does 'Hello world' come from?

'Hello world' is the usually the first example for any programming language. I've always wondered where this sentence came from, where was it first used. I've once been told that it was the first ...
6
votes
2answers
610 views

How to run a hello.js file in Node.js on windows?

I am trying to run a hello world program written in javascript in a separate file named hello.js Currently running windows version of node.js. The code runs perfectly in console window but how do I ...
6
votes
1answer
331 views

How To Build a Hello World For Nintendo 64?

I'm reading MIPS Assembly Language Programming, but now I want to build a simple "game" for Nintendo 64. I want to print a Hello, World to the screen, but someone can help with this. As I don't have ...
5
votes
3answers
70 views

missing a step ? what needs to be filled in the argument of loadLibrary()

These are the incomplete steps that i have followed to call a native function from a java program. Wrote a java program and then compiled to the .class file From the command javah - jni i generated ...
5
votes
3answers
363 views

Interesting “Hello World” Interview Question

We have a question we ask at our office during interviews that goes like this. For the sake of consistency, I am restricting the context of this to python. I'm sure there are other answers but I'm ...
5
votes
3answers
393 views

Hello world with android but without eclipse

I am pretty sure that I once stumbled upon a link that showed how to create a hello world application without eclipse, but I can't find that link anymore. It certainly needs not be a hello world ...
5
votes
3answers
17k views

undefined reference to pthread_create in linux (c programming)

I'm interested in learning to write C programs which use threads. I picked up the following demo off the web from https://computing.llnl.gov/tutorials/pthreads/ #include <pthread.h> #include ...
5
votes
8answers
505 views

Language Syntax Comparison

I'm interested in learning a new language. Does anyone know of a website with the same program (maybe a Hello World) written in several different languages (maybe 10-15 or so), so that I can get an ...
5
votes
1answer
2k views

Can I make C++ programs for BlackBerry (examples?)

Does anyone know I a can make C++ programs for the Blackberry platform? In some old video they state that 3rd party applications can only be written in Java. Is this true. Or is it possible to write ...
5
votes
58answers
2k views

How do you code the “Hello World!” program in your favourite language?

Help make Stack Overflow become the definitive place to come to for examples of the classic "Hello World!" program. Feel free to use any language you like and keep to one example per answer please.
4
votes
7answers
361 views

Convoluted hello world program [closed]

What's the most convoluted hello world program you can think of without any bogus lines? That means every single statement has to contribute to the overall program so you can't simply bloat it with ...
4
votes
4answers
648 views

What is the best resource for learning (N)ASM?

I've been wanting to learn assembly for a while now, and although I've tried a few times before, I haven't really been able to get past "Hello, world". Are there any good introductory tutorials to ...
3
votes
2answers
172 views

cross compile problem with simple hello program

Background : Trying to setup a cross compiler environment for arm target (TQ2440/Mini2440) On HOST running Red Hat: Wrote a simple hello program gcc -o hello hello.c compiles successfully ./hello ...
3
votes
1answer
1k views

ADK and Eclipse woes - com.android.future and USBAccessory?

I am trying to get ADK (Accessory Development Kit) set up with Eclipse, but after updating to API 12, to run the demokit Hello World, I get the 29 errors, the first few looking like: ...
3
votes
5answers
337 views

Altering my python path: helloworld.py returns command not found—

Massive apologies for this embarrassing question— I'm using my MacBook Pro, running snow leopard, and using Python 2.7.1. Trying to run my first script and all the first pages of all my tutorials are ...
3
votes
3answers
759 views

Configuring drools and maven and writing hello world application using them

I want to learn drools and maven can any one help me with the links for configuring drools and maven and writing a basic hello world example using them. Thanks in advance
3
votes
3answers
311 views

How to make a PHP extension

I know you can technically make PHP extension just by making a PHP file and using require_once. But would it optimize the performance if you wrote an extension in C or C++. If so, how would you make ...
3
votes
5answers
344 views

How to implement a hello world shared memory in c/c++ in windows?

Is shared memory stable at the first place? I prefer this way to inter-process/application communication because that way I don't need the overhead of parsing data. Is there a good hello world demo ...
3
votes
1answer
215 views

Where does the “Hello World!” example come from? [closed]

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. Was it used ...
3
votes
1answer
1k views

“Hello World” iPhone app does not auto-rotate

OK, knowledgeable programmer-types, please be gentle... I'm having trouble getting a very simple, one-view "Hello World" app to rotate automatically. I go through the usual "Hello World" steps: ...
3
votes
7answers
10k views

Issue with 'Hello Android' tutorial

I am brand new to Eclipse and Android, but somewhat familiar with Java. That having been said, I tried to follow the 'Hello Android' tutorial from the developer site using the latest Eclipse (Galieo) ...
3
votes
4answers
6k views

Problem — My Android “Hello World” App Won't Say 'Hello"

I hope that I have come to the right post for a beginner’s question abut Android programming. If not, please feel free to direct me to a better forum. I created a hello world application, and the ...
3
votes
9answers
806 views

Android: Learning the platform, have any app suggestions?

I'm beginning to learn mobile programming on the Android platform. I'm up for working with any particular base SDK. I just want to hear some suggestions from the community about what types of ...
3
votes
4answers
1k views

XCode Debugger: Why is it only showing me assembler?

I'm just starting out with Cocoa development in xcode, doing the hello world example. I'm up to step 6 of the section "runtime debugging", which is Using the Step Over button in the debugger ...
3
votes
5answers
7k views

JNI Hello World Unsatisfied Link Error

This is my first attempt at JNI. My ultimate goal is to get all tasks currently running on a machine, but need to get even a simple example running. I keep getting this error when I try to execute my ...
3
votes
8answers
768 views

Can you explain this 'Hello world' program?

I just started learning C but I don't understand this part of the code. Can anyone explain each line of code and what it does. Thank you! Please just answer to what I said instead of saying (it should ...
2
votes
1answer
88 views

C++ Reading text file as binary and show it in console

I try to read one text file as binary and then render it in console-app. I've got the next result: http://pastebin.com/gubYpAVZ I'm questioning: "Why I have got such symbols, that I don't have in the ...
2
votes
1answer
84 views

“Internal Server Error” with Hello World Python App

My files are as follows: application.wsgi (NOTE: updated as recommended from my previous question here) import os import sys sys.path.append('/srv/www/mysite.com/application') ...
2
votes
1answer
187 views

“[aapt] ERROR: Unknown option '--generate-dependencies'” for ant debug of HelloWorld

Trying to create/run the HelloWorld android app, building via ant debug fails with an unknown option in aapt. Nothing has been done to the project aside from generation itself with android create ...
2
votes
1answer
308 views

Ruby Sinatra Hello World Error in `remove_const': constant URI::WFKV_ not defined (NameError)

Just trying to get simple http server running and have no clue about ruby /usr/local/lib/ruby/gems/1.9.1/gems/rack-1.3.5/lib/rack/backports/uri/common_192.rb:53:in `remove_const': constant URI::WFKV_ ...

1 2 3 4