Answer Posted / prasanna
Preprocessor is the program which processes the source code before it goes to the compiler.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Why use int main instead of void main?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
what are the advantages of a macro over a function?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
What are the primitive data types in c?
What is the difference between abs() and fabs() functions?
How can you find the exact size of a data type in c?
How can I convert a number to a string?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What is a keyword?
Why is c used in embedded systems?
Is there sort function in c?
What is the difference between strcpy() and memcpy() function in c programming?