Question:Which of the following type casting is/are not correct?
A int a=5;double b= (double)a; B int a=5;double b= a; C int a=5;double b= double (a); D int a=5;double b= double a;
+ AnswerD
+ Report