I want to write a C function that will print 1 to N one per each line on the stdout where N is a int parameter to the function. The function should not use while, for, do-while loops, goto statement, recursion, and switch statement. Is it possible? I want to find an answer to this as this a challenge question
|
2
|
|
|
|
With blocking read, signals and alarm. I thought I'd have to use sigaction and SA_RESTART, but it seemed to work well enough without. Note that setitimer/alarm probably are unix/-like specific.
|
||||||||
|
|
|
Another thingy (on linux) would be to do as below where 7 is N
|
||
|
|
|
|
This takes the integer N from the command line and prints out from 1 to N
|
||
|
|
|
|
@Kjetil Jorgensen I am searching for the answer why "read(pipefds[0], &b, 1);" is required? Could you please explain or point me to some Doc ? |
||||
|
|
|
I'm very disappointed that this doesn't work. To me, the phrase "a function is called after any previously registered functions that had already been called at the time it was registered" suggests that it is possible to register atexit handlers after they have started to be called. That is, a handler can register another handler. Otherwise, how is it even possible for there to exist a function which has been called at the time another function is registered? But for me the call to atexit is returning 0 success, but not actually resulting in another call. Anyone know why, have I made some silly error?
By the way, not recursion because atexit doesn't call its parameter, it queues it to be called later. Obviously the C runtime contains a loop to call atexit handlers, but that loop exists whether you actually register any atexit handlers or not. So if this program contains a loop, so does every C program ;-) |
||||||||||
|
|
|
cant we user recursive functions? |
||
|
|
|
|
I think it doesn't count as recursion. |
||||||||||
|
|
|
I'd go for using
|
||
|
|
|
You can do this by nesting macros.
There will be 32 macros in total. Assuming size of Edit: Adding example for clarity.
|
||||||||
|
|
|
You can use setjmp and logjmp functions to do this as shown in this C FAQ For those who are curious to why someone have a question like this, this is one of the frequently asked questions in India for recruiting fresh grads. |
||||||||||||||||||||
|
|
|
This does it:
Here is another one:
|
||||||||||||
|
|
|
If you know the upper limit of N you can try something like this ;)
Joke aside, I don't really see how you can do it without recursion or all the instructions you mentioned there. Which makes me more curious about the solution. Edit: Just noticed I proposed the same solution as grombeestje :) |
|||
|
|
|
|
N is not fixed, so you can't unrole the loop. And C has no iterators as far as I know. You should find something that mimics the loop. Or thinking outside the box: (for example N is limited to 1000, but it is easy to adapt)
|
||||||||||||
|
|
|
You did not forbid |
||||
|
|
|
write all possible output to a string first, and null terminate it where the output should stop.
Given that |
|||

system(("MyExe %d",N-1))count as recursion ? :P – MSalters Oct 14 at 8:55