Home » C Programming » C Introduction » Question
  1. What is a standard library function to read 1 char at a time?
    1. putchar()
    2. printf()
    3. getchar()
    4. write()
Correct Option: C

gercha reads the next input character from a text stream and returns that as its value.
c = getchar()



Your comments will be displayed only after manual approval.