answersLogoWhite

0

It is the very same in every programming language.

For example: AND:

0 && 0 = 0

0 && 1 = 0

1 && 0 = 0

1 && 1 = 1

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Compare java arithmetic and logic operators with c arithmetic and logical operators?

They are very similar,but when we do logic operators there are still some differences.In c or c plus plus ,logic true can be expressed as'true' or '0',but in java,true is just 'true'.If you gave a zero,it will treat it as type of integer ,and so as false.


Printf and scanf Operators in C and C plus plus?

No, they are functions. Operators are -> or ++or /=


C plus plus bit-wise operators?

Are very useful. Examples: & | ^ ~


What is used to test value of character or integer in c plus plus?

Use the comparison operators (==, <, <=, >, >=). All primitives (including char and int) support these built-in operators.


What operators perform mathematical calculations such as adding and subtracting?

The main four operators are: Plus (+) Minus (-) Multiply (*) or (x) Divide (/) or (÷)


What are the storage allocation in C plus plus?

They mostly deal with pointers and new operators in memory.


What is the collective term for plus minus division and multiplication signs?

Arithmetic operators


What are logical classes in c plus plus?

There is no such thing. Logic is bitwise operation, not a data type.


What are valid Excel arithmetic operators?

The following are valid Excel operators for arithmetic: + (plus) - (minus) / (divide) * (multiply) ^ (power of) These can help you create operations, which would be your formulas that use the operators: =A2+A7 =10^2


How relational operators represented in c plus plus?

The relational operators are == (equal), != (not equal), < (less than), <= (less than or equal to), > (greater than) and >= (greater than or equal to). All relational operators are boolean, returning true or false depending on the l-value relationship with the r-value, with respect to the operator.


What are special operators in c plus plus?

The only "special" operators in C++ are those that cannot be overloaded. That is; the dot member operator (.), pointer to member operator (.*), ternary conditional operator (:?), scope resolution operator (::), sizeof() and typeof().


What is stream operator in c plus plus?

There are two stream operators: << (insert or put) and >> (extract or get). Output streams implement the insertion operator, input streams implement the extraction operator and input/output streams implement both operators.