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
What is sizeof return in c?
how is the examination pattern?
#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); }
What is malloc return c?
Write a program for finding factorial of a number.
code for quick sort?
What is the difference between scanf and fscanf?
How can I copy just a portion of a string?
Explain how can I convert a string to a number?
Why do we need arrays in c?
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
Difference between exit() and _exit() function?
List out few of the applications that make use of Multilinked Structures?
Is sizeof a keyword in c?
What are the types of arrays in c?