C Programming If ASCII value of 'x' is 120, then what is the value of the H, ifH = ('x' – 'w' ) / 3; 0 2 3 1 0 2 3 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of sum after the following program is executed?void main(){ int sum=1, index = 9; do{ index = index – 1; sum *= 2; }while( index > 9 );} 2 1 9 0.25 0.5 2 1 9 0.25 0.5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 11 None of These 10 9 11 None of These 10 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming C programs are converted into machine language with the help of None of these. A compiler An operating system An Editor None of these. A compiler An operating system An Editor ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Stack Register Array Linked list Queue Stack Register Array Linked list Queue ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} None of these 4 5 6 7 8 9 4 5 6 7 8 9 10 1 2 3 10 1 2 3 4 5 6 7 8 9 None of these 4 5 6 7 8 9 4 5 6 7 8 9 10 1 2 3 10 1 2 3 4 5 6 7 8 9 ANSWER DOWNLOAD EXAMIANS APP