#include "stdio.h" struct SNo { int c; SNo * prox; SNo * ant; }; SNo * fim = NULL; void main() { int i; SNo * no; for( i = 'A' ; i < 'A'+26; ++i) { no = new SNo; no->c = i; no->prox = NULL; no->ant = fim; fim = no; } for( no = fim ; no != NULL ; no=no->ant ) { printf("%c ",no->c); } printf("\n"); }