What are the preprocessors?

Answer Posted / niraj gupta

preprocessor is which tells the compiler what header file
we are going to use in our program
#include<stdio.h>
will tell the compiler that it include header file standard
input output

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we replace the struct function in tree syntax with a union?

768


Explain how do you determine the length of a string value that was stored in a variable?

663


If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above

615


What is extern keyword in c?

635


Explain how do you list files in a directory?

610






Explain high-order bytes.

670


How can I dynamically allocate arrays?

583


Can we declare function inside main?

560


Explain what does the function toupper() do?

627


What is the correct code to have following output in c using nested for loop?

603


Why c language is called c?

560


Is main a keyword in c?

619


What are the different types of errors?

635


Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.

3683


largest Of three Number using without if condition?

993