python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Why the use of `,@` does not work as I expected in this common lisp macro? Why is Slime returning this error message?
I am reading the book Lisp written by Winston. In addition, I am using SBCL, Emacs, and Slime.
In chapter 8 (about macros), the book has the following exercise:
Problem 8-7: A stack is a learnly ord...

Pedro Delfino
Votes: 0
Answers: 3
Create a dictionary whose keys are month names and values are no. of days in the corresponding month. #program stack
please correct the code.
Create a dictionary whose keys are month names and values are no. of days in the corresponding month. WAP with separate user defined functions to implement the following opera...
baadshahh Hacker
Votes: 0
Answers: 2
Different output while using node and node pointer in structure
I am writing code to create a stack and know whether the stack is empty or not.
#include <stdio.h>
#include <stdlib.h>
struct stack
{
/* data */
int size;
int top;
int *ar...
Ahamad Mamun Nishar Miya
Votes: 0
Answers: 1
Time limit exceeded in maximum value of stack(TLE error)
I am given a question on stacks ds : You have been given a sequence A of N digits. Each digit in this sequence ranges from 1 to 10^9. You need to perform 2 types of operations on this list:
Add(x): Ad...
Tuhin Chakrabarty
Votes: 0
Answers: 1