Given the code snippet: int num = 10; do { (num); } while (num = 11); What will happen if the given snippet is executed?
A) It will result in a compilation error
B) It will result in an infinite loop
C) It will print the value of num once
D) It will print the value of num twice