what is a function prototype?

Answer Posted / chetna

it is the declaration of function which includes specifying
arguments and return type but does not include its body.
eg : int rev(int a);
here, rev is a function name of integer type and returns an
integer type value.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is sizeof return in c?

804


how is the examination pattern?

1816


#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }

924


What is malloc return c?

809


Write a program for finding factorial of a number.

866


code for quick sort?

1833


What is the difference between scanf and fscanf?

922


How can I copy just a portion of a string?

1089


Explain how can I convert a string to a number?

872


Why do we need arrays in c?

840


Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer

4123


Difference between exit() and _exit() function?

908


List out few of the applications that make use of Multilinked Structures?

1793


Is sizeof a keyword in c?

784


What are the types of arrays in c?

869