eLearning
Tutorials
Programs
Interview Questions
Technical Questions
C Language
C++
JAVA
HTML & CSS
PHP
AJAX
J2EE
SQL
jQuery
Go back to Home
Our Placements
Tutorials
Programs
Interview Questions
Technical Questions
Live Training
Our Placements
Associated Colleges
Our Recruiters
Back
C Language
C++
JAVA
HTML & CSS
PHP
AJAX
J2EE
SQL
jQuery
Programs
Home
Programs
C Language
Increment & Decrement
Programs - C Language -
Increment & Decrement
Program:
#
include
<stdio.h>
#
include
<conio.h>
void
main
()
{
int
a=
0
;
clrscr();
while
(++a<
10
){
if
(a%
2
!=
0
)
printf
(
"%d\n"
,a);
}
getch();
}