adplus-dvertising
frame-decoration

Question

Which among the following is right?

a.

sizeof(struct stemp*) > sizeof(union utemp*) > sizeof(char *)

b.

sizeof(struct stemp*) < sizeof(union utemp*) < sizeof(char *)

c.

sizeof(struct stemp*) = sizeof(union utemp*) = sizeof(char *)

d.

the order Depends on the compiler

Posted under C Programming

Answer: (c).sizeof(struct stemp*) = sizeof(union utemp*) = sizeof(char *)

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which among the following is right?

Similar Questions

Discover Related MCQs

Q. Which of the following cannot be used inside sizeof?

Q. In a file contains the line "I am a boy\r\n" then on reading this line into the array str using fgets(). What will str contain?

Q. Out of fgets() and gets() which function is safe to use?

Q. What is the purpose of "rb" in fopen() function used below in the code?
FILE *fp;
fp = fopen("source.txt", "rb");

Q. Which of the following operations can be performed on the file "NOTES.TXT" using the below code?
FILE *fp;
fp = fopen("NOTES.TXT", "r+");

Q. The maximum combined length of the command-line arguments including the spaces between adjacent arguments is

Q. According to ANSI specifications which is the correct way of declaring main when it receives command-line arguments?

Q. What do the 'c' and 'v' in argv stands for?

Q. Which of the following is TRUE about argv?

Q. Which of the following statements are FALSE about the below code?
int main(int ac, char *av[])
{
}

Q. In the following statement
fprintf(fpt,"%n",i),
the variable fpt is a/an

Q. The function fopen("filename","r")returns

Q. The function sprintf()works like printf(),but operatres on

Q. To instantiate an object with the statement

ifstream items("C:inven.txt");

the file on the disk is identified by the name

Q. Expression ((fpt=fopen("Samples","w"))==NULL)would be true if

Q. The statement fseek(fp,0L,0)i - if syntactically correct,means

Q. The process of accessing data stored in a tape is similar to manipulating data on a

Q. If a file is opened in r+ mode then

Q. If a file is opened in w+ mode then

Q. ftell