Ecl Q37122529

ecl in

ecl in Show transcribed image text ecl in


Solution


In C language:—————Heap:struct goo* x = (struct goo*) malloc(sizeof(struct goo));Stack:struct goo x===========================In C++ language:—————Heap:goo* x = new goo;Stack:goo x

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.