hi guys)
please tell me - why the Turbo C show the error -
LINE_MAX is undefined
for code =
/* */
#include <stdio.h>
#include <alloc.h>/* */
#include <stdlib.h>
#include <limits.h>
main()
{
char a='';
char * ch;
char * inputstr;
printf("\nPlease specify the input string \n"); /
fgets ( inputstr, LINE_MAX , stdin );
printf("\n You've specified string = %s\n", inputstr);
scanf("%s", ch);
scanf("%s", ch);
}
big thanks in advance)