What is function prototype in c with example?
No Answer is Posted For this Question
Be the First to Post Answer
What is indirect recursion? give an example?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
Why does this code crash?
what is diognisis?
What is extern storage class in c?
Should I learn data structures in c or python?
Explain what’s a signal? Explain what do I use signals for?
What is a symbolic constant?
what is the difference between NULL & NUL keywords in C?
How can I do serial ("comm") port I/O?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
A stack can be implemented only using array?if not what is used?