Arista Network Interview Experience
Summary
Interview Experience
The interview started with a debugging problem from GFG What will the output and why? #include <iostream> using namespace std; void function(int *p) { int x = 100; p = &x; } int main() { int a = 10; int *ptr = &a; function(ptr); cout << "Value: " <&...


