FOR LOOP STATEMENT AS TOUGH:

 #include<stdio.h>

#include<conio.h>


void main(void)
{
 clrscr();
 int i=5,j=4;
 if(!printf(""))
 printf("%d %d",i,j);
 else
  printf("%d %d",i++,++j);

 getch();
}

Comments

Popular posts from this blog

250+ C Programs for Practice

FUNCTION OVERRIDING IN CPP