answersLogoWhite

0

What is if statement in c?

Updated: 8/18/2019
User Avatar

Wiki User

13y ago

Best Answer

if is a conditional statement to check the given condition

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

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

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 programming languages use a C switch statement?

There are two programming languages which use a C switch statement. The two languages are C and C++, hence the name C switch statement. There may be more, but those are the most obvious ones


What is a statement in c language programme?

Any experssion including assignment or a function call can be a statement in C


What are financial statement of a proprietorship?

The financial statement of a proprietorship are its Balancesheet,Profit & Loss A/c,Trading A/c.


How do you execute the statement repeatedly with out using whileloop in c?

for (;;) ...statement...;


Which symbol is used as a statement terminator in C?

semicolon ';' (Not applicable for block-statements)


What is uses statement?

There is no "uses" statement in C. Please restate the question.


Which statement is not frequently used in C plus plus?

The goto statement.


What is the deffernce of the switch statement and the if statement in c plus plus?

If statement is single selection statement,whereas the switch statement is multiple selective.


What do you mean by statements in C?

A statement in C is an expression terminated with a semi-colon. That is, a semi-colon turns an expression into a statement.


What do you mean by statements in C program?

A statement in C is an expression terminated with a semi-colon. That is, a semi-colon turns an expression into a statement.


What is statement terminator in c language?

The compiler demands it: your programs wouldn't compile without them.