C Programming Determine output:#include void main(){ char *p = NULL; char *q = 0; if(p) printf(" p "); else printf("nullp"); if(q) printf("q"); else printf(" nullq");} p q Depends on the compiler nullp nullq x nullq where x can be p or nullp depending on the value of NULL p q Depends on the compiler nullp nullq x nullq where x can be p or nullp depending on the value of NULL ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the correct value to return to the operating system upon the successful completion of a program? Program do no return a value. -1 1 2 Program do no return a value. -1 1 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function calculates the square of 'x' in C? sqr(x) pow(2, x) power(2, x) pow(x, 2) power(x, 2) sqr(x) pow(2, x) power(2, x) pow(x, 2) power(x, 2) ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 2, 4 0, 2 2, 0 4, 4 2, 2 2, 4 0, 2 2, 0 4, 4 2, 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ printf("%p", main);} Error Some address will be printed None of These make an infinite loop Error Some address will be printed None of These make an infinite loop ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? || % ++ + && || % ++ + && ANSWER DOWNLOAD EXAMIANS APP