how to write an or in c 2b 2b

Solutions on MaxInterview for how to write an or in c 2b 2b by the best coders in the world

showing results for - "how to write an or in c 2b 2b"
María Fernanda
08 Oct 2019
1if (a == 0 || b == 0)
2{
3  //statement here, || was used as an or
4}