Computer Science Engineering (CSE) Exam  >  Computer Science Engineering (CSE) Questions  >  Consider the following C code:Q.The code suff... Start Learning for Free
Consider the following C code:
 
Q. The code suffers from which one of the following problems:
  • a)
    compiler error as the return of malloc is not typecast appropriately.
  • b)
    compiler error because the comparison should be made as x==NULL and not as shown.
  • c)
    compiles successfully but execution may result in dangling pointer.
  • d)
    compiles successfully but execution may result in memory leak
Correct answer is option 'D'. Can you explain this answer?
Verified Answer
Consider the following C code:Q.The code suffers from which one of the...
Explanation: 
The code will run and give output = 10, so option A and B are discarded.
 int * x= malloc (sizeof(int));
This statement assigns a location to x. Now,
(int*)malloc(sizeof(int));
again assigns a new location to x , previous memory location is lost because now we have no reference to that location resulting in memory leak. Therefore, option D is correct. Memory leak occurs when programmers create a memory in heap and forget to delete it. Memory leaks are particularly serious issues for programs like daemons and servers which by definition never terminate. Detailed article on Memory Leak Running code of the question: [sourcecode language="C"] #include int *assignval (int *x, int val) { *x = val; return x; } void main () { int *x = malloc(sizeof(int)); if (NULL == x) return; x = assignval (x,0); if (x) { x = (int *)malloc(sizeof(int)); if (NULL == x) return; x = assignval (x,10); } printf("%d\n", *x); free(x); } [/sourcecode]
View all questions of this test
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Consider the following C code:Q.The code suffers from which one of the following problems:a)compiler error as the return of malloc is not typecast appropriately.b)compiler error because the comparison should be made as x==NULL and not as shown.c)compiles successfully but execution may result in dangling pointer.d)compiles successfully but execution may result in memory leakCorrect answer is option 'D'. Can you explain this answer?
Question Description
Consider the following C code:Q.The code suffers from which one of the following problems:a)compiler error as the return of malloc is not typecast appropriately.b)compiler error because the comparison should be made as x==NULL and not as shown.c)compiles successfully but execution may result in dangling pointer.d)compiles successfully but execution may result in memory leakCorrect answer is option 'D'. Can you explain this answer? for Computer Science Engineering (CSE) 2024 is part of Computer Science Engineering (CSE) preparation. The Question and answers have been prepared according to the Computer Science Engineering (CSE) exam syllabus. Information about Consider the following C code:Q.The code suffers from which one of the following problems:a)compiler error as the return of malloc is not typecast appropriately.b)compiler error because the comparison should be made as x==NULL and not as shown.c)compiles successfully but execution may result in dangling pointer.d)compiles successfully but execution may result in memory leakCorrect answer is option 'D'. Can you explain this answer? covers all topics & solutions for Computer Science Engineering (CSE) 2024 Exam. Find important definitions, questions, meanings, examples, exercises and tests below for Consider the following C code:Q.The code suffers from which one of the following problems:a)compiler error as the return of malloc is not typecast appropriately.b)compiler error because the comparison should be made as x==NULL and not as shown.c)compiles successfully but execution may result in dangling pointer.d)compiles successfully but execution may result in memory leakCorrect answer is option 'D'. Can you explain this answer?.
Solutions for Consider the following C code:Q.The code suffers from which one of the following problems:a)compiler error as the return of malloc is not typecast appropriately.b)compiler error because the comparison should be made as x==NULL and not as shown.c)compiles successfully but execution may result in dangling pointer.d)compiles successfully but execution may result in memory leakCorrect answer is option 'D'. Can you explain this answer? in English & in Hindi are available as part of our courses for Computer Science Engineering (CSE). Download more important topics, notes, lectures and mock test series for Computer Science Engineering (CSE) Exam by signing up for free.
Here you can find the meaning of Consider the following C code:Q.The code suffers from which one of the following problems:a)compiler error as the return of malloc is not typecast appropriately.b)compiler error because the comparison should be made as x==NULL and not as shown.c)compiles successfully but execution may result in dangling pointer.d)compiles successfully but execution may result in memory leakCorrect answer is option 'D'. Can you explain this answer? defined & explained in the simplest way possible. Besides giving the explanation of Consider the following C code:Q.The code suffers from which one of the following problems:a)compiler error as the return of malloc is not typecast appropriately.b)compiler error because the comparison should be made as x==NULL and not as shown.c)compiles successfully but execution may result in dangling pointer.d)compiles successfully but execution may result in memory leakCorrect answer is option 'D'. Can you explain this answer?, a detailed solution for Consider the following C code:Q.The code suffers from which one of the following problems:a)compiler error as the return of malloc is not typecast appropriately.b)compiler error because the comparison should be made as x==NULL and not as shown.c)compiles successfully but execution may result in dangling pointer.d)compiles successfully but execution may result in memory leakCorrect answer is option 'D'. Can you explain this answer? has been provided alongside types of Consider the following C code:Q.The code suffers from which one of the following problems:a)compiler error as the return of malloc is not typecast appropriately.b)compiler error because the comparison should be made as x==NULL and not as shown.c)compiles successfully but execution may result in dangling pointer.d)compiles successfully but execution may result in memory leakCorrect answer is option 'D'. Can you explain this answer? theory, EduRev gives you an ample number of questions to practice Consider the following C code:Q.The code suffers from which one of the following problems:a)compiler error as the return of malloc is not typecast appropriately.b)compiler error because the comparison should be made as x==NULL and not as shown.c)compiles successfully but execution may result in dangling pointer.d)compiles successfully but execution may result in memory leakCorrect answer is option 'D'. Can you explain this answer? tests, examples and also practice Computer Science Engineering (CSE) tests.
Explore Courses for Computer Science Engineering (CSE) exam

Top Courses for Computer Science Engineering (CSE)

Explore Courses
Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev