the output should be...
"1
2
3
5
6
7
8
9
Merry christmas"
using for loop..
here's my code !
</ #include<stdio.h>
#include<conio.h>
main()
{
int x;
for(x=0;x<9;x++){
printf("\n %d ",x);
}
getch();
}
>