Consider the following C statements. int i,alpha = 65; char ch[27]; for(i = 0;i<2;i++) { ch[i] = alpha; alpha = alpha + 1; } printf(!!!^!!!%s!!!^!!!,ch); What would be the output of the above C code?
Reveal answer
Fill a bubble to check yourself