answersLogoWhite

0


Best Answer

There are several operators in the C Programming language, which are used to perform various operations on variables and values.

Here is a list of some of the most commonly used operators in C:

Arithmetic operators: +, -, *, /, % (addition, subtraction, multiplication, division, modulus)

Assignment operators: =, +=, -=, *=, /=, %=, &=, |=, ^=, =

Comparison operators: ==, !=, , = (equal to, not equal to, less than, greater than, less than or equal to, greater than or equal to)

Logical operators: && (AND), || (OR), ! (NOT)

Bitwise operators: &, |, ^ (AND, OR, XOR)

Increment and decrement operators: ++ (increment), -- (decrement)

Conditional operator: ?: (ternary operator)

It's important to note that there may be some additional operators depending on the specific C compiler or implementation being used.

User Avatar

Newtum Solutions

Lvl 5
1y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

Many. Some of them: + ++ += & && &=

Actually, 8 of them in number.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

Quite a few. Some of them are: , () [] & * . -> + ++ += - -- -= * / % *= /= %= ! == = < > != > >>=

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How many operators are there in C Language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the different Turbo C operators?

TurboC is a program, the language is C Some of the operators are: . -&gt; * [] () , ?: = == &lt; &lt;= &gt; &gt;= != + += ++ - -= -- % %= / /= &lt;&lt; &lt;&lt;= &gt;&gt; &gt;&gt;= ! ~ ^ &amp; &amp;= &amp;&amp; | |=


What does the job of c operators consist of?

A C operator is not a job or profession but rather a coding language. C operators perform certain tasks in programming such as a "+ " operator performs addition.


How many types of logical operators in c only?

There are three logical operators in C; AND (&amp;), OR (|), and NOT (^). These are the bitwise versions. The combinatorial versions are &amp;&amp;, , and !.


What are the mathematical operators of c?

the mathematical operators of c are.....%,*,/,+,-


What are the operators in c tokens?

All arithmetic, logical operators are operators in c tokens. As: +, - , ++, --, %, &amp;&amp;, &amp;, &gt;&gt;, &lt;&lt; etc.


Explain the all operator the c language?

Visit this link http://www.cplusplus.com/doc/tutorial/operators/


What is difference between binary and unary operator in c language?

The number of arguments will be one for the unary operators and two for the binary operators. In the case of unary operators, the argument must be of the same type as that of the enclosing class or structure.


Printf and scanf Operators in C and C plus plus?

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


What is precedence between relational operator and arithmetic operator?

Arithmetic operators (+, -, *, /, % ) have greater precedence over relational operators (&lt;, &gt;, &lt;=, &gt;=, ==, !=) in C language.


A function is one in which the action taken for the true or false case includes yet another IF function?

The operators are &amp;&amp;, &amp;, |, . IF function does not exist in C language. C has if-statements


What is mean by robust language in c language?

Robust means strong enough to withstand or overcome intellectual challenges or adversity. c is a robust language because its rich set of built-in functions and operators can be used to write any complex logic program.


What are new and delete operators in c plus plus?

New and Delete are the memory management operators in c++,like c language we use malloc() and calloc() functions to allocate memory and free() functiong to release the memory similarily we use new to allocate memory in C++ and Delete to release the allocated memory....