what are prototypes

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the advantages of using friend classes.

598


Does std endl flush?

613


What are the rules about using an underscore in a c++ identifier?

639


Is it possible to provide special behavior for one instance of a template but not for other instances?

637


What does obj stand for?

639






Is empty stack c++?

525


What is cout flush?

574


What is vector processing?

675


When must you use a pointer rather than a reference?

610


How do I tokenize a string in c++?

616


How do pointers work?

711


write a program that reads in a file and counts the number of lines, words, and characters. Your program should ask the user to input a filename. Open the file and report an error if the file does not exist or cannot be opened for some other reason. Then read in the contents of the file and count the number of lines, words, and characters in the file. Also print additional information about the file, such as the longest and shortest words, and longest and shortest lines. For simplicity, we define a word to be one or more characters ending with white space (a space, tab, carriage return, etc.). Functions for checking the types of characters can be found in the ctype.h header file, so you want to include this header file in your program. For example, the sentence below could be all that is in a file. This sentence IT 104 is taught in C++. has 32 characters, one line, and six words. The shortest line is 32 characters. The longest line is 32 characters. The shortest word is 2 characters. The longest word is 6 characters

4860


What is the maximum combined length of command line arguments including the space between adjacent arguments?

596


Define a pdb file.

646


What is low level language in simple words?

570