vote up 1 vote down star

Just wondering...

Is a program with only constant variables still a program?

Would the answer change between a high level language and pure machine code?

My thinking is that the operating system would assign these values to memory, not the program/process, and the program, if it did have instructions, would operate on that data. Or is the program/process responsible for loading the variables into memory?

for example, assuming a high level language that supported not having an entry point, would a single declaration of x = 5; constitute a program?

flag

1  
I think you need to explain this one a bit better! It doesn't make much sense. Have you got an example of the kind of thing you're talking about. – Scott Langham Jun 2 at 11:54
1  
A typical "definition" question. Perhaps we need a few bottles of red whine to solve this. – Carl Bergquist Jun 2 at 12:46

closed as not a real question by Gerrie Schenck, Binary Worrier, Joshxtothe4, Rik, Ólafur Waage Jun 2 at 12:48

9 Answers

vote up 0 vote down

for example, assuming a high level language that supported not having an entry point, would a single declaration of x = 5; constitute a program?

Sure, I don't see why it's not a program. From how I see it, if a piece of code will affect the state of the memory and/or the processor it should be considered a program.

Of course, it may depend upon the compiler, and how it interprets that line of code. For example, if the compiler was smart enough to figure out that x is not used in any other places, it might not doing anything and regard it as a no-op.

On the other hand, if the compiler translated x = 5 to mean that a certain register should hold the value 5, that would be some kind of load or move instruction that is definitely having a change in state of the machine, and is performing some kind of execution.

x = 5 itself may not be very useful, but it is performing some kind of operation.

link|flag
vote up 0 vote down

No, it's not a program. It's a library.

link|flag
vote up 0 vote down

On most systems every program has a call to an operating system primitive that finishes the program execution (otherwise the processor just proceeds to executing whatever there's in memory and this usually crashes the program). So even without any user code it is a program.

link|flag
vote up 0 vote down

It would be a program, maybe not a useful one, but still a program.

link|flag
vote up 2 vote down

Anything with a series of instructions that the cpu executes is a program. It doesn't matter if there's any data. This is a program:

10: goto 10

But not very useful. It doesn't need any variables or constants (well... except for the line number 10).

Here's one without a line number. Most cpus have an instruction called the no op (short for no operation). And that instruction does nothing:

no_op

link|flag
vote up 1 vote down

It's very unclear what you are asking, but a program must typically have an entry point as it's very minimum contents. For example, the minimum C++ program is:

int main() {
}

If the program looked like this:

int x = 0;

it would not be a legal C++ program and would normally not link to produce an executable.

link|flag
vote up 0 vote down

How precisely can constants be variable? (referring to your question title)

And what would a program containing just variables actually do?

link|flag
Just a program that had one line, x=5; is it a program if it can be compiled? – Joshxtothe4 Jun 2 at 11:57
vote up 0 vote down

On most operating systems, the loader is indeed responsible for putting data specified in an executable file into various locations of memory. But they also tend to expect an entry point for the program, and with that lacking, will not be able to execute it. So most linkers would refuse to produce such a binary, since a binary by definition has an entry point and therefore SOME code in itself, even if it just a single "return from subroutine"-type instruction.

From a philosophical perspective, I think the answer is the same. a program does need to have something to do to be a program.

link|flag
vote up 0 vote down

If it controls the computer it is a program. I would view your example as instructions for a virtual machine (the OS in this case).

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.