How to assign two numbers in assignment statement. *
int a , b ;
int a, 2 , b, 5;
int a == 4, b= =8;
int a = 10 ; int b = 6 ;
Answers
Answered by
0
Answer:
I'm sorry this answers not solved
Answered by
1
Answer:
int a=10 ; int b=6
Explanation:
= is assignment operator while == is the equality operator. = is used to assign values whereas == is used for comparing values.
Similar questions