C Programming What will be printed after compiling and running the following code?main() { char *p; printf("%d %d",sizeof(*p), sizeof(p));} 2 1 1 1 1 2 2 2 2 1 1 1 1 2 2 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);} complier error 1 -1 -1 1 -1 1 -1 1 complier error 1 -1 -1 1 -1 1 -1 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 0 1 Garbage Value 2 3 0 1 Garbage Value 2 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of i and j after execution of following program?#includevoid main(){int i, j;for(i=0,j=0;i<10,j<20;i++,j++){printf("i=%d %t j=%d", i, j); }} 20 20 10 20 Run time error 10 10 20 20 10 20 Run time error 10 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ printf("%p", main);} Some address will be printed make an infinite loop Error None of These Some address will be printed make an infinite loop Error None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? James F. Codd Dennis Ritchie Bjarne Stroustrup Dr. Gosling James F. Codd Dennis Ritchie Bjarne Stroustrup Dr. Gosling ANSWER DOWNLOAD EXAMIANS APP