How can I read from argv[0]? I'm using NetBeans. Everytime, I have to type in stdin. When I use argv, then the program executes without my input.
Here's my code:
int main(int argc,char *argv[])
{
char *text;
int textLen,repNum;
text = stream2string(stdin,&textLen);
//....text = argv[0] doesnt work :(
UPDATE:
When I compile and run, I have to Type an Example String! The string is always the same: ABAABAABBBA. So I will take the first argument instead of stdin. But argv[1] doesn't work either.
Here's stream2string():
char *stream2string (FILE *fptr, int *n)
{
static char *s;
*n = 0;
ALLOC(s,char,2);
s[*n] = getc(fptr);
while(s[*n]!=EOF && s[*n]!='\0' && s[*n]!='\n') {
REALLOC(s,char,++*n+2);
s[*n] = getc(fptr);
}
s[*n] = '\0';
return(s);
} /* stream2string() */
I think setting textLen is also important.