Afficher les adresses d’un tableau de caractère

Author:

 adresse
{filelink=13370}

#include 

int main ()
{

  char * tab1 = "abc";
  char tab2[] = "def";

    printf(" %16lu n", tab1, tab1);
    printf(" %16lu ", tab2, tab2);

	return 0;
}

Leave a Reply

Your email address will not be published. Required fields are marked *