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
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is a keyword?
What is the function of this pointer?
0 Answers Agilent, ZS Associates,
What is the total generic pointer type?
how to build a exercise findig min number of e heap with list imlemented?
How does placing some code lines between the comment symbol help in debugging the code?
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
write a c program for swapping two strings using pointer
Explain how do you list a file’s date and time?
What are the different types of errors?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none