#include <stdio.h>
#include <stdlib.h>
int main(int argc, char **argv)
{
char *s;
s = (char *)malloc(sizeof(char) * 128);
if(s == NULL)
{
puts("Allocation Error");
exit(1);
}
printf("Type a string up to 127 characters: ");
fgets(s, 127, stdin);
puts("Your string is: ");
printf("%s", s);
free(s);
return 0;
}
/*
run:
Type a string up to 127 characters: and then you will get it
Your string is:
and then you will get it
*/