# include <stdio.h> int main(void) { char *ch="012345"; int i; for(i=0;i<6;i++) printf("%c",ch[i]); return 0; }