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 a function prototype?

5 Answers  


What are the advantages of using Unions?

0 Answers   IBS,


WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary display all contents?

6 Answers   Finite Infotech, Lovely Professional University, Wipro,


Write a program with dynamically allocation of variable.

0 Answers   Atos Origin,


write a program to remove duplicate from an ordered char array? in c

2 Answers  


4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.

1 Answers   Wipro,


what is the difference between procedure oriented and object oriented progaming language

1 Answers  


What are pointers really good for, anyway?

0 Answers  


which one is better structure or union?(other than the space occupied )

2 Answers  


every function has return the value?

1 Answers  


What is that continue statement??

4 Answers  


main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....

2 Answers  


Categories