what is the stackpointer

Answers were Sorted based on User's Feedback



what is the stackpointer..

Answer / kumaresan g

Stack pointer points the top most element of the stack.

Is This Answer Correct ?    4 Yes 0 No

what is the stackpointer..

Answer / rajendra.p

An address that identifies the location of the most recent
item placed on the stack

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More C Interview Questions

What is the difference between struct and union in C?

1 Answers  


Where static variables are stored in memory in c?

0 Answers  


can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?

2 Answers  


void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }

0 Answers  


What are register variables? What are the advantage of using register variables?

0 Answers   TISL,


what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1

0 Answers  


how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help

5 Answers  


any "C" function by default returns an a) int value b) float value c) char value d) a & b

0 Answers  


Can one function call another?

0 Answers  


What is sizeof in c?

0 Answers  


What does struct node * mean?

0 Answers  


In a byte, what is the maximum decimal number that you can accommodate?

0 Answers  


Categories