Which of the following is the correct C++ syntax to allocate space dynamically for an array of 10 int? (A) new int(10) (B) new int[10] (C) int new(10) (D) int new[10]â–ºCorrect Option Correct Option is: B