Top

Discussion

What is the output of this program?

#include          
struct student
{
  char *c;
};
void main()
{
  struct student s[2];
  printf("%d", sizeof(s));
}

 

  • A.2
  • B.4
  • C.16
  • D.8

Answer: D

No answer description available for this question

No comment is present. Be the first to comment.
Loading…

Post your comment