Top

Discussion

In which stage the following code

#include

gets replaced by the contents of the file stdio.h

  • A.During editing
  • B.During linking
  • C.During execution
  • D.During preprocessing

Answer: D

The preprocessor replaces the line #include  with the system header file of that name. More precisely, the entire text of the file 'stdio.h' replaces the #include directive.

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

Post your comment