=====push===== Syntax: #include void push( const TYPE& val ); The function push() adds val to the end of the current queue. For example, the following code uses the push() function to add ten integers to the end of a queue: queue q; for( int i=0; i < 10; i++ ) { q.push(i); } Related Topics: [[pop]]