Explain what header files do I need in order to define the standard library functions I use?
No Answer is Posted For this Question
Be the First to Post Answer
Is main is user defined function?
Find the highest of three numbers and print them using ascending orders?
What are the different types of pointers?
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
simple program of graphics and their output display
What are the types of pointers?
What is the benefit of using #define to declare a constant?
What is the heap in c?
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
what is a function pointer and how all to declare ,define and implement it ???
find the minimum of three values inputted by the user