answersLogoWhite

0


Best Answer

Only one: expression. Yes, in C expression is one of the statements. Some other statements are: if, do, goto, while, for, switch, break, continue, return, NULL-statement, compound-statement.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How many arithmetic statement in c?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you write a arithmetic operations in c using compound assignment statement?

a = b = c


What is an arithmetic operator in c?

+


What has the author C B Piper written?

C. B. Piper has written: 'Introduction to arithmetic' -- subject(s): Arithmetic


What has the author George C Francis written?

George C. Francis has written: 'Practical problems in mental arithmetic' -- subject(s): Arithmetic, Mental arithmetic, Problems, exercises


What position is arithmetic is frustrating an example of?

"Arithmetic is frustrating" is an example of a subjective statement reflecting personal feelings or experiences related to mathematics.


What statements can you write about 79 equals 63?

A false statement. or A statement not consistent with arithmetic. or A statement written by someone with no idea about basic mathematics. How's that for starters?


How many seconds are in 5 minutes?

60 seconds/minute times 5 minutes = ...................you do the arithmetic!


What are the operators in c tokens?

All arithmetic, logical operators are operators in c tokens. As: +, - , ++, --, %, &&, &, >>, << etc.


Write an equivalence of switch statement and if statement?

switch(ch) { case '+': ....cout <<"arithmetic operator"; ....break; //<===break is a must /// <====================other cases . . default: // <=======else }


What is the name of the most important rule for working any arithmetic or algebraic statement?

Understanding what is given and what is asked and accuracy


The arguments in an IF function are?

IF, in C and C++, is not a function - it is a statement. There are two parameters... if (expression) statement; The expression is evaluated. If it has logical result true, or arithmentic result not zero, the statement is executed; if not, the statement is not executed. The statement can be a single statement, in which it is terminated with a semi-colon, or it can be a block of statements, in which it is surrounded by braces.


What is an arithmetic operator in c program?

An arithmetic operator is any of the "atomic" operators to do the following math operations: + addition - subtraction / division * multiplication % modulus division