Guided Paths
Contests
Interview Prep
Practice
Resources
Problem of the day
Login
New update is available. Click here to update.
Close
Topic list
What is the output
You are not logged in!
Login now to see more stats and your progress.
Login
Other topics
Problem solved
Badge
Skill meter
Strings
-
-
Matrices (2D Arrays)
-
-
Linked List
-
-
Sorting
-
-
Binary Search
-
-
Stacks & Queues
-
-
Trees
-
-
Graph
-
-
Dynamic Programming
-
-
Greedy
-
-
Tries
-
-
Arrays
-
-
SQL
-
-
Binary Search Trees
-
-
Heap
-
-
Bit Manipulation
-
-
Report an issue
What is the output
int a = 7; int *c = &a; c = c + 1; cout << a << " " << *c << endl;
Options:
Garbage_value 7
7 Garbage_value
8 8
7 7
Submit
Change Theme