Question Set

1. malloc() returns a float pointer if memory is allocated for storing float's and a double pointer if memory is allocated for storing double's.



Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Show Similar Question And Answers
QA->In a bid to fill the vacant seats in trains and meet the challenges posed by the roadways and airways, the Indian Railways has decided to give discount of up to __________ to passengers on ticket fares in air-conditioned executive class and chair cars of trains like Shatabdi Express, Gatiman Express, Tejas Express, Double Decker and Intercity Express.....
QA->Distance between two stations A and B is 778 km. A train covers the journey from A to B at 84 km per hour and returns back to A with a uniform speed of 56km per hour. Find the average speed of the train during the whole journey?....
QA->The memory which is known as a volatile memory is:....
QA->Which method of keyboard operation involves typing by sense of location, memorizing of the keyboard and each finger operating on the keys allocated to it?....
QA->When you click on Draw Table option,the mouse pointer changes to a....
MCQ->malloc() returns a float pointer if memory is allocated for storing float's and a double pointer if memory is allocated for storing double's.....
MCQ->Which of the following statements correctly declare a function that receives a pointer to pointer to a pointer to a float and returns a pointer to a pointer to a pointer to a pointer to a float?....
MCQ->What will be the output of the following program? #include<iostream.h> double BixFunction(double, double, double = 0, double = 0, double = 0); int main() { double d = 2.3; cout<< BixFunction(d, 7) << " "; cout<< BixFunction(d, 7, 6) << endl; return 0; } double BixFunction(double x, double p, double q, double r, double s) { return p +(q +(r + s x) x) x; }....
MCQ->Which two cause a compiler error? float[ ] f = new float(3); float f2[ ] = new float[ ]; float[ ]f1 = new float[3]; float f3[ ] = new float[3]; float f5[ ] = {1.0f, 2.0f, 2.0f};....
MCQ->What will be the output of the following program? #include<iostream.h> int main() { float Amount; float Calculate(float P = 5.0, int N = 2, float R = 2.0); Amount = Calculate(); cout<< Amount << endl; return 0; } float Calculate(float P, int N, float R) { int Year = 1; float Sum = 1 ; Sum = Sum (1 + P ++N R); Year = (int)(Year + Sum); return Year; }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution