Answer Posted / dhanshri chabukswar
a compiler act as a translator between you and the computer
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
Do pointers need to be initialized?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What math functions are available for integers? For floating point?
Is c is a procedural language?
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.
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Tell me with an example the self-referential structure?
What is #pragma statements?
What is structure and union in c?
What does %p mean?
What is a pointer value and address in c?
How can I use a preprocessorif expression to ?
What do you understand by normalization of pointers?
What is the best style for code layout in c?