a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work
a) compiler
b) loader
c) directive
d) preprocessor
No Answer is Posted For this Question
Be the First to Post Answer
To find whether a number is even or odd without using any conditional operator??
12 Answers College School Exams Tests, IBM,
Why main function is special give two reasons?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
Write a program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors
How can I implement sets or arrays of bits?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
What is chain pointer in c?
What are # preprocessor operator in c?
what is a function prototype?
write a program to copy the string using switch case?
A stack can be implemented only using array?if not what is used?
What is the basic structure of c?