WHAT IS PRE POSSESSORS?
Answers were Sorted based on User's Feedback
Answer / billuyadav208
Pre possessors are the pre defined libraries which can loaded
befor main function ....
| Is This Answer Correct ? | 36 Yes | 1 No |
Answer / krishna
preprocessor directives are not the libraries which should
be included while writing a program .But it is a notation
used to include the libraries which are included in the
header part of a program
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ravikanth
The preprocessor is used to modify your program according to
the preprocessor directives in your source code.
Preprocessor directives (such as #define) give the
preprocessor specific instructions on how to modify your
source code. The preprocessor reads in all of your include
files and the source code you are compiling and creates a
preprocessed version of your source code.
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / priya nagmoti
In computer science, a preprocessor is a program that
processes its input data to produce output that is used as
input to another program. The output is said to be a
preprocessed form of the input data, which is often used by
some subsequent programs like compilers
| Is This Answer Correct ? | 2 Yes | 4 No |
Is flag a keyword in c?
Why is sprintf unsafe?
write a program in c language for the multiplication of two matrices using pointers?
what is the difference between structural,object based,object orientd programming languages?
write a c program that prints all multiples of 3between 1 and 50.
What are the different types of data structures in c?
1. What is the output of printf("%d") 2. What will happen if I say delete this 3. Difference between "C structure" and "C++ structure". 4. Diffrence between a "assignment operator" and a "copy constructor" 5. What is the difference between "overloading" and "overridding"? 6. Explain the need for "Virtual Destructor". 7. Can we have "Virtual Constructors"? 8. What are the different types of polymorphism? 9. What are Virtual Functions? How to implement virtual functions in "C" 10. What are the different types of Storage classes? 11. What is Namespace? 12. What are the types of STL containers?. 13. Difference between "vector" and "array"? 14. How to write a program such that it will delete itself after exectution? 15. Can we generate a C++ source code from the binary file? 16. What are inline functions? 17. Talk sometiming about profiling? 18. How many lines of code you have written for a single program? 19. What is "strstream" ? 20. How to write Multithreaded applications using C++? 21. Explain "passing by value", "passing by pointer" and "passing by reference" 22. Write any small program that will compile in "C" but not in "C++" 23. Have you heard of "mutable" keyword? 24. What is a "RTTI"? 25. Is there something that I can do in C and not in C++? 26. Why preincrement operator is faster than postincrement? 27. What is the difference between "calloc" and "malloc"? 28. What will happen if I allocate memory using "new" and free it using "free" or allocate sing "calloc" and free it using "delete"? 29. What is Memory Alignment? 30. Explain working of printf. 31. Difference between "printf" and "sprintf". 32. What is "map" in STL? 33. When shall I use Multiple Inheritance? 34. What are the techniques you use for debugging? 35. How to reduce a final size of executable? 36. Give 2 examples of a code optimization.
How can you tell whether a program was compiled using c versus c++?
What is "Hungarian Notation"?
Write a program to find the biggest number of three numbers in c?
Can you please explain the difference between syntax vs logical error?
What are the types of pointers?