16.
What will be the output of the following C code?
char str[]; 
strcpy(str, "Hello"); 
res = atof(str);
printf("String value = %s, Float value = %f\n", str, res);

18.
Which of the following is the correct description of EXIT_FAILURE?

20.
What will be the output of the following C code?
#include <assert.h> 
#include <stdio.h>  
void main() 
{ 
   int n=12; 
   char str[50]="";
   assert(n >= 10); 
   printf(" output: %d\n", n); 
   assert(str != NULL); 
   printf("output: %s\n", str); 
}

Read More Section(Standard Library Functions)

Each Section contains maximum 100 MCQs question on Standard Library Functions. To get more questions visit other sections.