You are on page 1of 1

#include<stdio.

h> /*this function accepts a character and displays it twice*/ main() { char c; c=getc(stdin) fflush(stdin); putc(c,stdout); putc(c,stdout); }

You might also like