adplus-dvertising
frame-decoration

Question

Choose correct answer..
#include<stdio.h>
main()
{
 /* Multi Line Comment
 This line is ignored by compiler
 */
 printf("Hello C.."); 
}

a.

#include is a Preprocessor Directive

b.

<stdio.h> is a header file with predefined functions like printf, scanf etc

c.

#include
main()
{

}
is a mandatory function to be included in every C Program.

d.

All of the above

Answer: (d).All of the above

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Choose correct answer..