Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //
- // 22 October 2020 (14:02)
- // dllbridge@gmail.com //
- ////////////////////////////////////////////
- #include <stdio.h>
- #define push(sp, n) *sp++ = n
- #define pop(sp) *--sp
- int stack[1024], // Выделяем 4KB ( 4096 байт памяти или 4 * 1024 ) для нашего стека
- *sp = stack, // Указатель на вершину стека
- x, // Просто переменная
- i; // Счётчик для циклов
- ////////////////////////////////////////////
- int main() //
- {
- for(i = 5; i < 25; i ++) push(sp, i);
- for(i = 0; i < 20; i ++)
- {
- x = pop(sp);
- printf("x = %d \n", x);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement