adplus-dvertising
frame-decoration

Question

puts does the following when it writes to stdout

a.

Deletes everything

b.

Adds ‘t’ to the line written

c.

Deletes the terminating ‘n’

d.

Adds ‘n’ to the line written

Answer: (d).Adds ‘n’ to the line written

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. puts does the following when it writes to stdout

Similar Questions

Discover Related MCQs

Q. What is the size of array “line” used in fgets(line, maxline, *fp) function?

Q. The following function

int fputs(char *line, FILE *fp)
returns EOF when:

Q. Which function has a return type as char pointer?

Q. Which of the following is the right declaration for fgets inside the library?

Q. Which is true about fputs.fputs returns?

Q. gets and puts operate on

Q. gets does the following when it reads from stdin

Q. Strcat function adds null character

Q. Which of the following library function is not case-sensitive?

Q. The following expression can be substituted for

if (isalpha(c) && isdigit(c))

Q. Which of the following will return a non-zero value when checked with isspace(c)?

Q. Which is true about isaplpha(c), where c is an int that can be represented as an unsigned char or EOF.isalpha(c) returns?

Q. Which is true about isupper(c), where c is an int that can be represented as an unsigned char or EOF.isupper(c) returns?

Q. Which is true about isalnum(c), where c is an int that can be represented as an unsigned char or EOF.isalnum(c) returns?

Q. Which types of input are accepted in toupper(c)?

Q. What is the difference in the ASCII value of capital and non-capital of the same letter is?

Q. ungetc can be used only with getc.

Q. How many characters for pushback is guaranteed per file while using ungetc(c, fp);

Q. Which of the following is the correct syntax for calling function ungetc?
(Assume int c and FILE *fp)

Q. ungetc is used