what is the stackpointer
Answers were Sorted based on User's Feedback
Answer / kumaresan g
Stack pointer points the top most element of the stack.
Is This Answer Correct ? | 4 Yes | 0 No |
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 |
what is a function prototype?
What are the advantages of using Unions?
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.
write a program to remove duplicate from an ordered char array? in c
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.
what is the difference between procedure oriented and object oriented progaming language
What are pointers really good for, anyway?
which one is better structure or union?(other than the space occupied )
every function has return the value?
What is that continue statement??
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....