#include
#include
void main(void)
{
char buffer[256];
buffer[0] = 253; // Number of characters that can be read
printf("Type in a string and press Enter\n")
#include
void main(void)
{
char string[256];
printf("Type in a string of characters and press Enter\n");
gets(string);
printf("The string was %s\n", string);
}