Search:

Type: Posts; User: amadeus111

Search: Search took 0.00 seconds.

  1. Thank you very much! I found that control+d

    Thank you very much! I found that control+d
  2. printf does not work out of loop K&R array example

    #include <stdio.h>
    /* count digits, white space, others */
    main()
    {
    int c, i, nwhite, nother;
    int ndigit[10];
    nwhite = nother = 0;
    for (i = 0; i < 10; ++i)
    ndigit[i] = 0;
    while ((c =...
Results 1 to 2 of 2