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 |
Is an array parameter is always "by reference" ?
What are valid operations on pointers?
Tell me when is a void pointer used?
what is c
What is the difference between a string and an array?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
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....
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Find if a number is power of two or not?
What is the use of printf() and scanf() functions?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?