Skip to content

Commit 7ca7b58

Browse files
fix: replace using namespace std with std::cin and std::cout
1 parent cf96959 commit 7ca7b58

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

operations_on_datastructures/circular_queue_using_array.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include <iostream>
2-
using namespace std;
2+
using std::cin;
3+
using std::cout;
34

45
int queue[10];
56
int front = 0;

0 commit comments

Comments
 (0)