answersLogoWhite

0

What is Boolean operator in c language?

Updated: 8/21/2019
User Avatar

Wiki User

8y ago

Best Answer

A Boolean operator is any operator that returns true or false. False is typically denoted by the integer value 0 while all non-zero values equate to true. The less-than operator (<) is an example of a Boolean operator.

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is Boolean operator in c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

The definition of a boolean operator?

what is boolean operator


What is the Boolean operator that is appropriate to use?

Boolean is a type, not an operator and can have the value of either TRUE or FALSE


What logical operator is used to reverse the boolean operator?

NOT


Is an example of a Boolean operator?

BUT (apex)


What do the two plus stand for in C plus plus?

The ++ in C++ refers to the postfix increment operator (operator++()). It's literal meaning is "the successor to C", in reference to the C language upon which the C++ language is based.


What is the memory management operator in c plus plus?

There is no memory management operator in C++ -- it is an unmanaged language. You use the C++ new operator to allocate memory, and use the C++ delete operator to release previously allocated memory.


What java operator reverses the truth or falsity of a condition?

The ! (boolean invert) operator returns the opposite of a boolean's current value: if(!(7 5," and the statement produces this output: not equal


What are examples of a Boolean operator?

And, or, not, xor, nand, nor. There are a few others, too.


Ternaory operator in C language?

exp1? exp2: exp3


Which Boolean operator is used when a search is limited to All of the words?

and


What is boolean based language?

Boolean is just true or false.


How do you add two numbers with out using operator in c language?

Not possible. Of course you can call a function which does the addition for you, but function-calling is also an operator in C.