{}
CODE VISUALIZER
Learn DSA the way it should be — with step-by-step code visualization.
Try now!
CODE VISUALIZER
Learn DSA with step-by-step code visualization.
Try now!
run-icon
main.cpp
#include <iostream> int main() { int array1[2] = {1, 2}; int array2[2] = {1, 2}; std::cout << (array1 == array2); return 0; }
Output