ExamVeda
Login
Home
This question belongs to C Program File Input Output
File Input Output
?

What will be the output of the following C code considering user typed jkl?
#include <stdio.h>
int main()
{
    char n[20];
    fgets(n, 19, stdin);
    ungetc(n[0], stdin);
    printf("%s\n", n);
    return 0;
}

Answer & Solution
Correct Answer: Option A
Let's discuss the solution. Join the discussion
Examveda
Question posted by Examveda
Community

Join the Discussion

No comments yet Be the first to discuss this question.