Gets & Puts Function

#include "stdio.h"
int main (void)
{
    char line[80];    gets(line);
    puts(line);
    return 0;
}

0 comments:

Post a Comment