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 are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
How to write a code for reverse of string without using string functions?
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
ABCDCBA ABC CBA AB BA A A
program to convert a integer to string in c language'
the data type used for unlimited value in c and how to do this program
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none
Explain the red-black trees?
How does #define work?
What is the function of this pointer?
0 Answers Agilent, ZS Associates,
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)