C Programming Determine Output:void main(){ char p[]="%dn"; p[1] = 'c'; printf(p, 65);} 65 A Error c 65 A Error c ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 8 2 20 50 Theoratically no limit. The only practical limits are memory size and compilers. 8 2 20 50 Theoratically no limit. The only practical limits are memory size and compilers. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? * None of these % + / * None of these % + / ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include#define clrscr() 100void main(){ clrscr(); printf("%dn", clrscr());} 0 1 Error 100 0 1 Error 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which command is used to skip the rest of a loop and carry on from the top of the loop again? continue resume break skip None of these continue resume break skip None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? + % && ++ || + % && ++ || ANSWER DOWNLOAD EXAMIANS APP