C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 2, 4 2, 2 4, 4 2, 0 0, 2 2, 4 2, 2 4, 4 2, 0 0, 2 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 I, II and III I and II I, III and IV III and IV II and III I, II and III I and II I, III and IV III and IV ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define prod(a,b) a*bvoid main(){ int x=3, y=4; printf("%d", prod(x+2, y-1));} 10 12 15 11 10 12 15 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Members of a structure Both of the above Local variables R-values Arithmetic expressions Members of a structure Both of the above Local variables R-values Arithmetic expressions ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 45545 54554 54544 55445 45545 54554 54544 55445 ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as General purpose language Data processing language None of these System programming language General purpose language Data processing language None of these System programming language ANSWER DOWNLOAD EXAMIANS APP