Answer Posted / 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 |
Post New Answer View All Answers
difference between native and cross compilers
Explain high-order bytes.
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
Do pointers store the address of value or the actual value of a variable?
What is this infamous null pointer, anyway?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
Why c is called free form language?
Explain is it better to bitshift a value than to multiply by 2?
what is the function of pragma directive in c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What are the properties of union in c?
State the difference between x3 and x[3].
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What is .obj file in c?
What is the difference between the local variable and global variable in c?