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 correct declaration of main?

0 Answers  


#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300

4 Answers   Tieto,


When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd

0 Answers  


fn f(x) { if(x<=0) return; else f(x-1)+x; }

5 Answers   HCL,


Find greatest of two numbers using macro

4 Answers   Bosch, Siemens,






given post order,in order construct the corresponding binary tree

0 Answers   S-Cube, Wipro,


Explain how do you determine a file’s attributes?

0 Answers  


Why do we need arrays in c?

0 Answers  


Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.

1 Answers  


Explain the term printf() and scanf() used in c language?

0 Answers  


How to set a variable in the environment list?

1 Answers  


wat is the output #define VOLEDEMORT _who_must_not_be_named int main() { printf("VOLEDEMORT"); }

2 Answers  


Categories