Computer Science, asked by syed230595, 8 months ago

main () { unsigned int =-2; if(i=0) print("hello"); }

Answers

Answered by KumarDeepakNaik
0

Answer:

Error on programme,

if (i=0) is a wrong argument, correct is if (i= = 0)

And for if (i==0) the return is false so nothing in output

Similar questions