Search:

Type: Posts; User: c99tutorial

Search: Search took 0.01 seconds.

  1. Replies
    33
    Views
    3,718

    This might be related to your problem for...

    This might be related to your problem



    for ( c = 0 ; c < n ; c++ )
    for ( c1 = 0; c1 < n ; c1++)
    {
    if ( array[c] == search )
    if ( array[c1] == search2) ...
  2. Replies
    33
    Views
    3,718

    Playing cards don't have ASCII values. A playing...

    Playing cards don't have ASCII values. A playing card is an abstract notion which one might represent with a character sequence such as "9c" which, if we agreed upon it, stands for the playing card...
  3. Replies
    33
    Views
    3,718

    A good post on this is c - Multiple characters...

    A good post on this is

    c - Multiple characters in a character constant - Stack Overflow

    Basically, the important key idea is that a character constant in C is defined as an integer. A char is...
  4. Replies
    33
    Views
    3,718

    The model used for ASCII is one code for one key...

    The model used for ASCII is one code for one key on the (US) keyboard and hence one character. Two characters such as '^' and 'a' might be conceptually combined to produce the separate character 'â'...
Results 1 to 4 of 4