C Programming Determine Output:void main(){ printf("%p", main);} None of These make an infinite loop Some address will be printed Error None of These make an infinite loop Some address will be printed Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} H Hello None of These Some Address will be printed H Hello None of These Some Address will be printed ANSWER DOWNLOAD EXAMIANS APP
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 x nullq where x can be p or nullp depending on the value of NULL nullp nullq Depends on the compiler p q x nullq where x can be p or nullp depending on the value of NULL nullp nullq Depends on the compiler ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the base data type of a pointer variable by which the memory would be allocated to it? unsigned int int Depends upon the type of the variable to which it is pointing. float No data type unsigned int int Depends upon the type of the variable to which it is pointing. float No data type ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 6 None of these 0 1 10 6 None of these 0 1 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Any C program Must contain at least one function. Needs input data. None of these Need not contain any function. Must contain at least one function. Needs input data. None of these Need not contain any function. ANSWER DOWNLOAD EXAMIANS APP