Question #3: What is the value of the local variable x at the end of main? 58% on 6881 times asked
int x = 5; int main(int argc, char** argv) { int x = x; return 0; }