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
What are the restrictions of a modulus operator?
Do you have any idea about the use of "auto" keyword?
Find greatest number out of 10 number without using loop.
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
Describe dynamic data structure in c programming language?
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
What is pre-emptive data structure and explain it with example?
What does the && operator do in a program code?
program to locate string with in a string with using strstr function
wite a programme in c to linear search a data using flag and without using flags?
What are run-time errors?
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?