C Programming The type of the controlling expression of a switch statement cannot be of the type ........ char long short float int char long short float int ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=10; i=!i>14; printf("i=%d", i);} 0 14 10 1 0 14 10 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 II and III III and IV I and II I, II and III I, III and IV II and III III and IV I and II I, II and III I, III and IV 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++);} 5 6 12 7 6 6 11 6 6 7 5 6 12 7 6 6 11 6 6 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; printf("%d %d", sizeof(*p), sizeof(p));} 1 2 2 1 1 1 2 2 1 2 2 1 1 1 2 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Function scope File scope No scope at all Block scope Local scope Function scope File scope No scope at all Block scope Local scope ANSWER DOWNLOAD EXAMIANS APP