F0R LOOP STATEMENT : for(; i++; printf("%d",i));

 


#include<stdio.h>

#include<conio.h>

int main()

{ clrscr();

     char i=0; 

     for(; i++; printf("%d",i));

     printf("%d",i);

     


    getch();

}

answer

 is : 1


Comments

Popular posts from this blog

250+ C Programs for Practice

FUNCTION OVERRIDING IN CPP