Computer Science, asked by aram11raja21, 5 months ago

find errors
int g=6,h;

g>=5 ? b=100 : b=200;

printf(“%d\n”,b)​

Answers

Answered by aayushp2016
0

Answer:

Error: L value required for b" comes? ... int a = 10, b; a >=5 ? ( b=100): (b=200); printf("%d\n", b); ... the condition result in any variable. see below example

Explanation:

PLEASE MARK AS BRAINLIST

Similar questions