Which of the following is correct way to initialize a variable x of int type with value 10? (A) int x ; x = 10 ; (B) int x = 10 ; (C) int x, x = 10; (D) x = 10 ;â–ºCorrect Option Correct Option is: B