Search:

Type: Posts; User: ephemeralz

Search: Search took 0.00 seconds.

  1. check command line argument for numeric value

    Is there any C library function to check to see if the command line argument is a numerical value or string?

    char *ms = av[i];

    //how can i check to see if ms is a numerical value?
    if ( ms ==...
  2. Replies
    1
    Views
    1,099

    array out of bound seg fault

    int read_word(int fld_delim, int rec_delim, int eor_delim, char field[MAXSIZE], FILE *fp) {

    int p, i;
    p = i = 0;

    while ( (p=getc(fp))!= EOF ) {
    if( p ==...
Results 1 to 2 of 2