the following function calls supposedly write a


The following function calls supposedly write a single new-line character, but some are incorrect. Identify which calls don't work and explain why.

    printf("%c", '\n');        

    printf("%c", "\n");        

    printf("%s", '\n');        

    printf("%s", "\n");        

    printf('\n');              

    printf("\n");              

    putchar('\n');             

    putchar("\n");              

    puts('\n');                

    puts("\n");                

    puts("");

Request for Solution File

Ask an Expert for Answer!!
Application Programming: the following function calls supposedly write a
Reference No:- TGS0208933

Expected delivery within 24 Hours