what is if-else-if Statement

Normal 0 false false false EN-US X-NONE X-NONE ...

Read more

What is Relational Operators ?

Relational Operators                 The relational operators are used to specify conditions in the programs. A relational operator compares two...

Read more

What is Control Structure define the types of control structure.

Normal 0 false false false EN-US X-NONE X-NONE ...

Read more

If Statement in C / C++

If Statement in C  If statement is used to execute a statement or set of statements, or skip this statements. The ability to control the flow of your program, letting it make decisions on what code to execute, is valuable to t...

Read more

Write a program that take grade A,B,C and D if user enter A then Display Exelent if enter B then Good if Enter C Average and if Enter D then Display Poor

Program #include<iostream.h> #include<conio.h> void main() { char grd; cout<<"Enter grade A,B,C or D..."; grd=getche(); if(grd=='a'||grd=='A') cout<<"\nEXCELENT"; else if(grd=='B'||grd=='b') cout<<"\nGOO...

Read more
j

Sunday, 13 December 2015

what is if-else-if Statement

what is if-else-if Statement

Normal 0 false false false EN-US X-NONE X-NONE

What is Relational Operators ?

Relational Operators                 The relational operators are used to specify conditions in the programs. A relational operator compares two values. It produces result as true of false. The relational operators are sometimes called conditional operators or comparison operators as they test conditions...

What is Control Structure define the types of control structure.

What is Control Structure define the types of control structure.

Normal 0 false false false EN-US X-NONE X-NONE