Top

Discussion

Is there any difference in the #define and typedef in the following code?

typedef char * string_t;
#define string_d char *;
string_t s1, s2;
string_d s3, s4;

 

  • A.Yes
  • B.No

Answer: A

No answer description available for this question.

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

Post your comment