what are prototypes
Answers were Sorted based on User's Feedback
Answer / pallavii
Prototyping describes the function interface to the compiler
by giving the details such as the number and the arguments
and the type return value.
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / 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 |
Answer / nisha
they are declaration which is useful for compiler in
compiling
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / j.vaishnavi
Prototyping involves the production of functionally useful
and trustworthy systems through experimentation with
evolving systems. Generally, this experimentation is
conducted with much user involvement in the evaluation of
the prototype. basic functions usually used in system.it
has implementing in encryption decryption models.
| Is This Answer Correct ? | 0 Yes | 0 No |
Is python written in c or c++?
What is heap sort in c++?
What do you mean by C++ access specifiers ?
What is a c++ class?
Is it possible for the objects to read and write themselves?
What function initalizes variables in a class: a) Destructor b) Constitutor c) Constructor
a class that maintains a pointer to an object that is programatically accessible through the public interface is known as?
write a program to add two numbers without using an arithmetic operator.
Explain how an exception handler is defined and invoked in a Program.
What is an undefined behavior and sequence points
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create
What is realloc() and free()? What is difference between them?