Arrays and pointers c

Code examples

0
0

int main(int argc, char *argv[])
{	// declare an array
    char *card_deck[] = {"Joker", "one", "two", "three", "four",
    					"five", "six", "seven", "eight", "nine",
                        "ten", "Jack", "Queen", "King"};
    // declare a point and make it point to the array;
  	// You need two ** because an array is a pointer to the first element in the array
  	// So you need a pointer to a pointer AKA double pointer
    char **ptr = card_deck;
    
    for (int deck = 0; deck <= 13; deck++)
    {
      	// Now you can increment the ptr in a loop and print all the elements of the array.
        ptr++;
        printf("\ncard deck %s", *ptr);
    }

Similar pages

Similar pages with examples

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................