Tagged Questions

2
votes
6answers
120 views

Difference between Stack And Heap

Please tell me the difference between stack and heap with respect to below code int main() { int arr[3]; int *a; arr [5] = 6; // out of bound but it will not give error. arr [3000] = ...