edited by
289 views
1 votes
1 votes
We use character array to declare string in C. So, if I declare an array like

character ch[ ] = {‘a’,’k’,’a’,’/o’};

and try printing ch[3] like :

printf(“%C”,ch[3]);

what will be the output ?
edited by

Please log in or register to answer this question.

Related questions

1 votes
1 votes
2 answers
1