// Inbuilt_Queue #include #include using namespace std; int main() { queue q; q.push(0); q.push(1); q.push(2); q.push(3); q.push(4); while(!q.empty()){ cout<