Answers for "or operator c++"

C++
1

how to write an or in c++

if (a == 0 || b == 0)
{
  //statement here, || was used as an or
}
Posted by: Guest on March-24-2020
2

or in cpp

a || b = a or b
Posted by: Guest on February-03-2021
1

c++ what is %

x = 11 % 3;
Posted by: Guest on December-15-2020
4

c++ .* operator

The .* operator is used to dereference pointers to class members.
Posted by: Guest on September-03-2020
0

using of and || c++

x = y = z = 5;
Posted by: Guest on December-30-2020
-1

or operator c++

section .text
   global main
extern printf

main:
   mov ebx,10 ; moving the intial time to ebx
loop:   push ebx ; value of first parameter
   push message ; value of second parameter
   call printf ; to outpur the result
   dec ebx ; decrementing the value stored in ebx by 1
   jnz loop ; if not equal to zero then a go to loop would be triggered
   add esp,80   ;clearing the stack
   ret

message   db   "Value = %d",10,0   

Here's the solution to your question, please provide it a 100% rating. Thanks for asking and happy learning!!
Posted by: Guest on July-26-2021

Browse Popular Code Answers by Language