3
votes
4answers
100 views
c# stack queue combination
hi!
is there in C# some already defined generic container which can be used as Stack and as Queue at the same time?
I just want to be able to append elements either to the end, or …
0
votes
1answer
35 views
rails stack level too deep?
Im trying to implement roles feature to my app that already has authlogic working... Im following this tutorial but now Im getting an error "stack level too deep" when I try to ru …
1
vote
2answers
20 views
JVM and CLR allocation optimization
Do the JVM and .NET VM allocate objects on the stack when it is obvious to the runtime that an objects lifetime is limited to a certain scope?
1
vote
7answers
121 views
Why use a pointer to a pointer to the stack when creating a push function?
I am looking at a textbook example of a linked list that implements a stack. I don't understand why using a pointer to a pointer to the stack is necessary for the push operation. S …
9
votes
9answers
323 views
Stack Size Estimation
In multi-threaded embedded software (written in C or C++), a thread must be given enough stack space in order to allow it to complete its operations without overflowing. Correct s …
5
votes
10answers
220 views
What tool can catch buffer overflows in C?
So I have this simple piece of code which demonstrates a simple buffer overflow:
#include <stdio.h>
int main(void)
{
char c[4] = { 'A', 'B', 'C', 'D' };
char d[4] = …
0
votes
4answers
57 views
Java Stack method (multipop) Beginner java
Hey y'all,
I'm trying to write a Java method to preform a 'multi-pop" on a stack, it should "pop" "k" number of items off the top of the stack object. This is what I'm thinking, b …
0
votes
3answers
176 views
How to programmatically tell if two variables are on the same stack? (in Windows)
I'm in a thread. I have an address. Is that address from a variable on the same stack that I'm using?
static int *address;
void A()
{
int x;
atomic::CAS(address, 0, &am …
1
vote
1answer
46 views
Is there a gdb (or similar) frontend that will show the program stack visually?
Basically, I'm looking for something where I can break execution and then see a visual representation of the stack in memory. DDD doesn't have this as far as I can tell.
0
votes
2answers
30 views
How to find the current stack?
Hi, in Pharo, how can I find the currently evaluating stack?
0
votes
5answers
113 views
Determining Stack Space with Visual Studio
I'm programming in C in Visual Studio 2005. I have a multi-threaded program, but that's not especially important here.
How can I determine (approximately) how much stack space my …
3
votes
5answers
163 views
From an interview: what’s the benefit of the stack in C?
I was asked about heap and stack memory structure in an interview. The guy asked me what's the benefit of having the stack? I wasn't sure what he was getting at. What others ways a …
4
votes
4answers
129 views
Why can’t compiler derive string length for array of strings?
Note: This question was influenced by this answer.
The following is valid C code:
char myString[] = "This is my string";
This will allocate a string of length 18 (including the …
9
votes
10answers
330 views
Does stack grow upward or downward?
I have this piece of code in c:
int q=10;
int s=5;
int a[3];
printf("Address of a: %d\n",(int)a);
printf("Address of a[1]: %d\n",(int)&a[1]);
printf("Address o …
0
votes
6answers
127 views
Implement an array of stacks in C
Implement an array of stacks where stacks are defined :
typedef struct StackNode {
int data;
StackNode* next;
} StackNode;
Each array element points to a stack, each st …
