1. Numbers and commas Write a program that reads from input integers separated by commas (and possibly also whitespace) and prints them.
2. Fill buffer with words
Write a function that receives as parameters a character array and its length and fills the array with words read from standard input.
The resulting string should be null-terminated.
Words should be separated by one space; stop when a word does not fit
completely.