C Programming An array elements are always stored in ________ memory locations. Sequential and Random Random Sequential None of these Sequential and Random Random Sequential None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with Both of the above A special symbol other than underscore An alphabet A number Both of the above A special symbol other than underscore An alphabet A number ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0; for(;i++;printf("%d", i)); printf("%d", i);} Error 1 11 12 Error 1 11 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int i=i++, j=j++, k=k++; printf("%d %d %d", i, j, k);} 1 1 1 0 0 0 garbage values Error 1 1 1 0 0 0 garbage values Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output given program?#includevoid main(){int i = -10;for(;i;printf("%d ", i++));} -10 to -1 -10 to 0 Complier error -10 to infinite -10 to -1 -10 to 0 Complier error -10 to infinite ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff1 fff0 fff4 fff3 fff2 fff1 fff0 fff4 fff3 fff2 ANSWER DOWNLOAD EXAMIANS APP