205) Consider the declaration
static char hello[ ] = " hello " ;
The output of printf( " % s \ n ", hello) ;
will be the same as that of
Answer is:
printf(" %s \ n", " hello ") ;
Related C Programming MCQ with Answers
Answer is:
putchar( 'a' ) ; second(); printf ("%c", 'a' );
Answer is: