Question d’entretien chez Microsoft

Print the order of numbers in reverse in an array using pointers. c-program

Réponse à la question d'entretien

Utilisateur anonyme

25 févr. 2011

main(){ int a[N], *p; for (p= a + N - 1; p>= a; p--) printf(" %d", *p); return 0; }