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 |
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
How do you access command-line arguments?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
write a fuction for accepting and replacing lowercase letter to'Z' with out using inline function.
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
Why is sizeof () an operator and not a function?
What does a run-time "null pointer assignment" error mean?
Write a program that receives as input a number omaadel-n-print, four digits.
design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
What is the difference between a function and a method in c?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV