-1

Let's say I have a hello world program, which print 'Hello World'. Now, I have compiled this program for CISC Processor and next I have compiled for RISC processor. My question is which will have bigger code size and why?

Prawn Hongs
  • 441
  • 1
  • 5
  • 17

1 Answers1

0

The programs will be the same size. As both of them consist simply of passing a string constant to a system call.

Dan D.
  • 73,243
  • 15
  • 104
  • 123