Search:

Type: Posts; User: jeremy75

Search: Search took 0.02 seconds.

  1. Replies
    8
    Views
    1,349

    *cptr = &channel[0] // cptr = channel; display...

    *cptr = &channel[0] // cptr = channel;
    display (*cptr); // display (cptr);
    int *cptr, i; // int i;

    modify this
  2. Thread: final exams

    by jeremy75
    Replies
    6
    Views
    3,440

    scanf("%d", &thirdnum); printf("\nThe three...

    scanf("%d", &thirdnum);
    printf("\nThe three numbers entered is %.2d %.2f and %.2d\n", maxnum);

    Check it!
  3. Replies
    9
    Views
    1,132

    this code is mean ...

    this code is mean

    +------+------+------+------+------+------+------+------+
    ^
    p

    if p->word is equal with word, p is assinged p->left or p->right

    this is not remove p
  4. Thread: hollow square

    by jeremy75
    Replies
    5
    Views
    14,802

    #include #include /*...

    #include <stdio.h>
    #include <stdlib.h>

    /* function main begins program execution */
    int main()
    {
    int row; /* initialize row */
    int column; /* define column */
    int x;
  5. Replies
    20
    Views
    2,913

    while (fread(&X, sizeof(contact_rec), 1, fp)) !=...

    while (fread(&X, sizeof(contact_rec), 1, fp)) != NULL) <----"Expression Syntax Error"

    while (fread(&X, sizeof(contact_rec), 1, fp) != 0) //<----"Expression Syntax Error"
  6. Thread: fgets problem

    by jeremy75
    Replies
    14
    Views
    2,862

    i suggest you replace this ...

    i suggest you

    replace this

    scanf("%d",&A[i][j]);
    =>
    scanf("%d%c",&A[i][j]);
  7. Replies
    5
    Views
    1,755

    guess

    #include <stdio.h>
    #include <stdlib.h>

    #define MAXNAME 40
    #define MAXDIGITS 27

    struct phone
    {
    char areacode[MAXDIGITS];
    char localprefix[MAXDIGITS];
Results 1 to 7 of 7