what is a stack

Answer Posted / eresh

stack is a part of ram memory

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)

817


‎How to define structures? · ‎

636


how to write a c program to print list of fruits in alpabetical order?

1797


Array is an lvalue or not?

642


Explain what is page thrashing?

613






HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????

2273


What is difference between %d and %i in c?

698


write a program to create a sparse matrix using dynamic memory allocation.

4375


What is the use of getch ()?

640


What was noalias and what ever happened to it?

594


Are the variables argc and argv are local to main?

793


What does the error message "DGROUP exceeds 64K" mean?

729


Explain About fork()?

651


Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.

630


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5217