Answer Posted / divya
prototype statement helps the compiler to check the return
and argument types of the function means it tells the
compiler 1.the name of the function
2.the type of value returned
3.the type and number of arguments
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What problems might the following macro bring to the application?
How is new() different from malloc()?
Why do we need runtime polymorphism in c++?
How would you use the functions memcpy(), memset(), memmove()?
Can user-defined object be declared as static data member of another class?
Explain the isa and hasa class relationships. How would you implement each?
Can you help me with this one? Make a program that when a user inputed a Product Name, it will display its price, and when the user inputed the quantity of the inputed product, it will show its total price. The output must be like this: Product Name: Price: Quantity: Total Price: ..this is the list of products to be inputed: Cellphone - 1500 Washing Machine - 5200 Television - 6000 Refrigirator - 8000 Oven - 2000 Computer - 11000 thanks..:D
What is the difference between a pointer and a link in c ++?
Can create new c++ operators?
Can char be a number c++?
What is the maximum value of a unsigned char a) 255 b) 256 c) 128
How many types of comments are there in c++?
Explain function overloading
How do you print a string on the printer?
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?