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 the difference between struct and union in C?
Where static variables are stored in memory in c?
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?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What are register variables? What are the advantage of using register variables?
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
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
any "C" function by default returns an a) int value b) float value c) char value d) a & b
Can one function call another?
What is sizeof in c?
What does struct node * mean?
In a byte, what is the maximum decimal number that you can accommodate?