#include<stdio.h>
void main()
{
int a=10,b=15;
clrscr();
if(a>b)
printf("%d is the large number",a);
else
printf("%d is the large number",b);
getch();
}
Statements that check an expression then may or may not execute a statement or group of statements depending on the result of the condition.
In the C language, the continue statement can only be used within a loop (for, while, or do). Upon execution, control transfers to the beginning of the loop.
It has no use in C++ itself, it is only useful in Borland Turbo C++. It provides generic graphics support for Borland Turbo C++ applications.
TLINK is the Turbo C++ linker utility. You use it to link the object files created by the Turbo C++ compiler.
If is a keyword that introduces a conditional expression. If the expression evaluates true, the statement or statement block that follows is executed, otherwise control is passed to the line following the statement or statement block, which may be another conditional expression. if( expression_1 ) { // do something when expression_1 is true } else if( expression_2) { // do something when expression_1 is false but expression_2 is true } else { // do something when both expression_1 and expression_2 are false }
Yes.
Statements that check an expression then may or may not execute a statement or group of statements depending on the result of the condition.
if is a conditional statement to check the given condition
A conditional statement is true if, and only if, its contrapositive is true.
In the C language, the continue statement can only be used within a loop (for, while, or do). Upon execution, control transfers to the beginning of the loop.
for,while,do while
return 0
while, for, do-while (and perhaps goto)
How the turbo c plus plus use what in the computer.
At the first statement of function main.
[object Object]
Use them carefully.