C Programming Which one of the following is not a reserved keyword for C? register auto case default main register auto case default main ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr{6} arr[7] arr{7} arr[6] None of these arr{6} arr[7] arr{7} arr[6] None of these 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 );} 9 2 1 0.25 0.5 9 2 1 0.25 0.5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char p[]="%dn"; p[1] = 'c'; printf(p, 65);} c A Error 65 c A Error 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? ++ % + || && ++ % + || && ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char not; not = !2; printf("%d", not);} 0 2 Garbage Value None of These 0 2 Garbage Value None of These ANSWER DOWNLOAD EXAMIANS APP