answersLogoWhite

0

What are operators in C programming?

Updated: 8/18/2019
User Avatar

Wiki User

13y ago

Best Answer

Like these: << >> ==

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are operators in C programming?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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.


Example of relational statements in C programming?

You mean relational operators?if (argc


How do you use more than one operator in C programming?

for example:x = y+z-3;this expression has three operators in it ('=', '+' 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.


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.


Printf and scanf Operators in C and C plus plus?

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


Which of these elements is NOT common to all programming languages. A. set of operators B. structured classes C. supported data types or D. rules of syntax?

B. C, for example does not have structured classes.


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 are the basics in c?

C programming language allows the developer to call previously written operations and definitions, written both by the developer, or by others. C's operators are: Addition, Subtraction, integer promotion, additive inverse, multiplication, division, modulo, assignment, increment (before and after). decrement (before and after) and assignment. C's comparison operators are: equal, greater that, less than, not equal, greater than or equal, less than or equal. C's logical operators are: AND, OR, and NOT. From those, you can write anything.


What is c and c in computer programming?

C and C++ are both high-level programming languages.


How c plus plus is a procedure based language?

C is both. The characteristics of a procedural oriented language: assignment operators (:= in C) The characteristics of a structured programming language: block of codes ({} in C) for if-else, while-, for- loops, subroutines, etc.