Computer Science, asked by satyam9980, 4 months ago

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 omg02657
0

Answer:

I'm sorry this answers not solved

Answered by yogkum841
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