#include <stdio.h>


int i; 
int main(void) {
	char x[] = {'a','b','\0'};
	
for(i=0;i<3;i++){ 

printf(" %d ",x[i]); 
} 

}
