C Programming What will be the output given program?#includevoid main(){int i = -10;for(;i;printf("%d ", i++));} -10 to 0 -10 to infinite Complier error -10 to -1 -10 to 0 -10 to infinite Complier error -10 to -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming The type of the controlling expression of a switch statement cannot be of the type ........ int long float char short int long float char short 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); }} 4 5 6 7 8 9 1 2 3 10 4 5 6 7 8 9 10 None of these 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 1 2 3 10 4 5 6 7 8 9 10 None of these 1 2 3 4 5 6 7 8 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);} 11 6 6 7 12 7 5 6 6 6 11 6 6 7 12 7 5 6 6 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... No scope at all Block scope Local scope File scope Function scope No scope at all Block scope Local scope File scope Function scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ printf("%p", main);} Error make an infinite loop None of These Some address will be printed Error make an infinite loop None of These Some address will be printed ANSWER DOWNLOAD EXAMIANS APP