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 I and II I, III and IV III and IV I, II and III II and III I and II I, III and IV III and IV I, II and III ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During Preprocessing During Execution During Editing During linking None of these During Preprocessing During Execution During Editing During linking None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming void main(){ int a=10, b; b = a++ + ++a; printf("%d %d %d %d", b, a++, a, ++a);}what will be the output when following code is executed? 12 10 11 13 22 12 12 13 22 14 12 13 22 11 11 11 22 13 14 14 12 10 11 13 22 12 12 13 22 14 12 13 22 11 11 11 22 13 14 14 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: float ptr; float *ptr; None of these *float ptr; float ptr; float *ptr; None of these *float ptr; ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char a[]="12345"; int i = strlen(a); printf("%d", ++i);} 7 None of These 6 5 7 None of These 6 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following program?#includeint c[10] = {1,2,3,4,5,6,7,8,9,10}; main(){ int a, b=0; for(a=0;a<10;++a) if(c[a]%2 == 1) b+=c[a]; printf("%d", b);} None of these 25 20 24 30 None of these 25 20 24 30 ANSWER DOWNLOAD EXAMIANS APP