int_queue(int size);
void put_int_queue(int i);
int get_int_queue();
int isempty_int_queue();
I 1 I 2 I 3 O 1 I 4 O 2 ...Παρατήρηση: Το πρόγραμμα μπορεί να δομηθεί γύρω από τον παρακάτω κώδικα εισόδου:
#include <iostream.h> main() { char c; // Initializations here for (;;) { cin >> c; switch (c) { case 'I': // Process input here break; case 'O': // Process output here break; } } }