Question: #include #include main ( ) { char * c; c = ( char * ) malloc ( sizeof ( char ) ) ; c [

#include
#include
main (){
char *c;
c =(char *) malloc (sizeof (char));
c[0]='a';
c[1]='b';
}
Which of the following statements accurately describes the
behavior of the above program?
It will encounter a segmentation fault
It will not encounter a segmentation fault
It may encounter a segmentation fault (it depends)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!