answersLogoWhite

0

What do you mean by stack-refreshing? Anyway, there are no stack handling functions in the standard C library.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How can I use the stack pipe operator in programming to efficiently process and manipulate data?

The stack pipe operator in programming allows you to efficiently process and manipulate data by chaining multiple functions together in a sequence. This helps streamline the code and make it easier to read and maintain.


How you describe operations of stack ADT using c template functions?

No, because C does not support the concept of template functions. Template functions only exist in C++, never in C.


How can you call a function written in FORTRAN from a C program?

Is the FORTRAN function part of a library. If it is it will be no different from call a c function in a library. There could be an issue the order that the functions attribures are pusshed onto the stack like there is with pascal.


Programming languages that control zigbee?

quoting from stack exchange: "Zigbee", or IEEE 802.15.4, is a protocol. As such, it has no "programming language".


How can you learn Forth the stack-based language and programming environment created by Charles H Moore in the 1970s?

Learn about Forth the stack-based language and programming environment created by Charles H. Moore in the 1970sForth


Basic concept and application of stack?

A stack is a last in first out (LIFO) data structure. Stacks are typically used in backtracking algorithms where values are popped off the stack in the reverse order they were pushed onto the stack. Procedural programming languages make use of a call stack so that functions can easily return control to their callers -- which is vital when a function may have more than one call site. The calling function pushes the return address onto the call stack and then passes control to the callee function. When the callee has finished its task, the return address is popped off the stack and control returned to that address. In this way, functions can call other functions (including themselves) without losing track of where those calls came from. The call stack is also used to store a function's local variables as well as any arguments that were passed to the function by its caller. The function's exception handlers can also be placed on the stack. When an unhandled exception occurs, the call stack unwinds until a stack frame with a suitable exception handler is located. If the call stack unwinds all the way to the program's entry point (the main function) and there is still no handler, the program terminates with an unhandled exception error.


What is a stack trace?

A 'stack trace' is a list of which functions have been called, based on this information. The stack is very inflexible about allocating memory; everything must be deallocated in exactly the reverse order it was allocated in.


Where 2 find the library in panfu?

To find the library in Panfu, open your map and look for the building with a stack of books icon. Head to that location on the map to find the library.


What is the meaning of popping in computer programming?

Popping is the opposite of pushing. You push values into a queue and pop them off. The queue is generally represented by a stack, where the last value pushed onto the stack is the first to be popped off the stack (last in first out, or LIFO).


What is the empty condition of stack?

The empty condition of a stack occurs when there are no elements present in the stack. This is typically checked using a method that verifies if the stack's size is zero or if a pointer/reference to the top element is null or None. An empty stack cannot support operations like pop or peek, as there are no elements to remove or access. In programming, attempting to perform these operations on an empty stack usually results in an error or exception.


What book do you pick up in the Mordred museum on Astro Knights island?

Once you have paid your admission (with the gold coin from the fountain outside), click on the stack of books to the right of the museum guide. The stack has the Library Slip, which you must have to access the dungeon from the castle library.


What are the disadvatages of using functions in computer programming?

As opposed to what, exactly? Having all your code in one gigantic main() function? That is going to be unmanageable for any non-trivial program. I guess you might lose a bit of speed pushing and popping from the stack, but much of that can be optimized by the compiler.