Question
#include<stdio.h>
#include<stdlib.h>
int main()
{
char *ptr;
*ptr = (char)malloc(30);
strcpy(ptr, "RAM");
printf("%s", ptr);
free(ptr);
return 0;
}
a.
Error: in strcpy() statement.
b.
Error: in *ptr = (char)malloc(30);
c.
Error: in free(ptr);
d.
No error
Posted under C Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. Point out the error in the following program.
Similar Questions
Discover Related MCQs
Q. Which of the following statement is correct prototype of the malloc() function in c ?
View solution
Q. What is the return type of malloc() or calloc()?
View solution
Q. Which function is used to delete the allocated memory space?
View solution
Q. Among 4 header files, which should be included to use the memory allocation functions like malloc(), calloc(), realloc() and free()?
View solution
Q. Which of the following is/are true?
View solution
Q. Which languages necessarily need heap allocation in the run time environment?
View solution
Q. malloc() returns a float pointer if memory is allocated for storing float's and a double pointer if memory is allocated for storing double's.
View solution
Q. malloc() allocates memory from the heap and not from the stack.
View solution
Q. Where does the uninitialized data gets stored in memory?
View solution
Q. malloc() returns a NULL if it fails to allocate the requested memory.
View solution
Q. If malloc() successfully allocates memory it returns the number of bytes it has allocated.
View solution
Q. Can We increase the size of dynamically allocated array?
View solution
Q. Can we increase the size of statically allocated array?
View solution
Q. When we dynamically allocate memory is there any way to free memory during run time?
View solution
Q. Local variables are stored in an area called ___________
View solution
Q. Choose the statement which is incorrect with respect to dynamic memory allocation.
View solution
Q. The type of linked list in which the node does not contain any pointer or reference to the previous node:
View solution
Q. The advantage of using linked lists over arrays is that ________
View solution
Q. Which of the following is an example for non linear data type?
View solution
Q. Why to use fflush() library function?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!