Which among the following is right?
a. sizeof(struct stemp*) > sizeof(union utemp*) > sizeof(char *) b. sizeof(struct stemp*) <…
-->
a. sizeof(struct stemp*) > sizeof(union utemp*) > sizeof(char *) b. sizeof(struct stemp*) <…
#include <stdio.h> main() { int a = 1; printf("size of a is %d, ", sizeof(++a…
#include <stdio.h> struct temp { int a[10]; char p; }; a. 5 b. 11 c. 41 d. 44 ANSWER: 44
//Let P be a structure //Let Q be a union a. sizeof(P) is greater than sizeof(Q) b. sizeof(P) …
//Let P be a structure //Let Q be a union a. sizeof(P) is greater than sizeof(Q) b. sizeof(P) …
#include <stdio.h> #include "test.h" #include "test.h" int main() { //so…
a. When former is used, current directory is searched and when latter is used, standard directory i…
a. The predefined library file will be selected b. The user-defined library file will be selected c. …
a. Current directory where program is saved b. C:COMPILERINCLUDE c. S:SOURCEHEADERS d. Both (b) and (c…
a. The predefined location then the current directory b. The current directory then the predefined l…
char **argv; a. argv is a pointer to pointer. b. argv is a pointer to a char pointer. c. argv is a fun…
a. standard error b. standard error types c. standard error streams d. standard error definitions ANSWE…
a. strnchar() b. strchar() c. strrchar() d. strrchr() ANSWER: strrchr()
a. conio.h b. stdlib.h c. stdio.h d. dos.h ANSWER: stdio.h
a. Reposition the file pointer to a character reverse. b. Reposition the file pointer stream to end …
int (*pf)(); a. pf is a pointer to function. b. pf is a function pointer. c. pf is a pointer to a func…
char *arr[10]; a. arr is a array of 10 character pointers. b. arr is a array of function pointer. c. a…
a. malloc() and memalloc() b. alloc() and memalloc() c. malloc() and calloc() d. memalloc() and farall…
#include<stdio.h> #include<stdlib.h> #define MAXROW 3 #define MAXCOL 4 int main() { int …
#include<stdio.h> int main() { typedef char (*(*arrfptr[3])())[10]; arrfptr x; retu…