/** * UPEM / Compilation / Projet TPC * Exemple de fichier source TPC invalide * Pacien TRAN-GIRARD, Adam NAILI */ const special = 'b'; caractere funky_func(entier arg) { return !arg; } void main(void) { void ret; ret = 1 + funky_func(0) * 2; while (ret) { readc(ret); print(ret); if (ret == special) print('!'); } }