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 is difference b/w extern & volatile variable??
i got 75% in all semester am i eligible for your company
when to use : in c program?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
what is the use of a array in c
What is use of #include in c?
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
Compare and contrast compilers from interpreters.
What is #include conio h?
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
for example user gives input as " 20 or 20.0 or rs 20.0 or 20.00 or rs20 and so .. on " and the output should be stored as " rs.20.00 " in a variable