answersLogoWhite

0


Best Answer

There are eight types of operators which are used in C language.These are-

1.Arithmetic operator

2.Assignment operator

3.Relational operator

4.Increment/Decrement operator

5.Bitwise operator

6.Logical operator

7.Conditional operator

8.Additional operator

1.Arithmetic operator:Arithmetic operators are mathmetical operator.These are addition,Subtraction,Multiplication and divison.

2.Assignment operator:Assignment operators are used to store the result of an expression to a variable.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

There are 32 keywords in ANSI C, and a handful of basic operators for performing math and binary operations. The language was designed to be simple enough for programmers to learn quickly, yet powerful enough to offer access to advanced platform features if the developer needed that access. In general, C provides all the same potential capability that a higher level language offers, but may require more code to achieve the same effect as higher level languages. For additional details, the curious should probably download a C compiler, such as mingw or gcc, and find a resource for learning C, such as a website, a good book, or a class offered at a local community college.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

1. arithmetric operator

2. relational operator

3. logical operator

4.assignment operator

5. unary operator

6.conditional operator

6.comma operator

7.bitwise operator

This answer is:
User Avatar

User Avatar

Wiki User

7y ago

The C operators can be divided up into several categories, as follows:

Arithmetic operators:

+ (unary plus)

- (unary minus)

+ (addition)

- (subtraction)

* (multiplication)

/ (division)

% (modulo)

++ (prefix increment)

-- (prefix decrement)

++ (postfix increment)

-- (postfix decrement)

Comparison operators:

== (equal to)

!= (not equal to)

< (less than)

> (greater than) <= (less than or equal to)

>= (greater than or equal to)

Logical operators:

! (logical NOT)

&& (logical AND)

(logical OR)

Bitwise operators:

~ (bitwise NOT)

& (bitwise AND)

| (bitwise OR)

^ (bitwise XOR)

<< (bitwise left shift)

>> (bitwise right shift)

Assignment operators:

= (simple assignment)

+= (addition assignment)

-= (subtraction assignment)

*= (multiplication assignment)

/= (division assignment)

%= (modulo assignment)

&= (bitwise AND assignment)

|= (bitwise OR assignment)

^= (bitwise XOR assignment)

<<= (bitwise left shift assignment)

>>= (bitwise right shift assignment)

Member and pointer operators:

[] (subscript)

* (indirection)

& (address-of)

-> (member dereference)

. (member reference)

Other operators:

() (function call)

, (comma)

?: (ternary conditional)

sizeof (size-of)

alignof (align-of)

(type) (C-style cast)

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

Are very important. Some of them are: + - * & ->

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

arithmetic operator

logic operator

increment operator

decrement operator

conditional operator

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

8 types of operators are used

i.e arthmetic

relational

logical

bitwise

conditional etc

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the various operators available in c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How many operators are there in C Language?

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: =, +=, -=, *=, /=, %=, &amp;=, |=, ^=, = Comparison operators: ==, !=, , = (equal to, not equal to, less than, greater than, less than or equal to, greater than or equal to) Logical operators: &amp;&amp; (AND), || (OR), ! (NOT) Bitwise operators: &amp;, |, ^ (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.


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.


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 advangate of c language?

A popular programming language, available on many platforms.

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; | |=


How many operators are there in C Language?

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: =, +=, -=, *=, /=, %=, &amp;=, |=, ^=, = Comparison operators: ==, !=, , = (equal to, not equal to, less than, greater than, less than or equal to, greater than or equal to) Logical operators: &amp;&amp; (AND), || (OR), ! (NOT) Bitwise operators: &amp;, |, ^ (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.


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.


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.


Is the C language windows or mac based?

The C language is a universal language that is available for most computers. The language was created in the early 1970s long before either Mac or Windows computers were available.


Printf and scanf Operators in C and C plus plus?

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


Is c language available in unix?

The C language has implementations for all popular platforms, including Unix.


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