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
Is it better to use malloc() or calloc()?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
Explain what standard functions are available to manipulate strings?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
Explain the red-black trees?
How can I read in an object file and jump to locations in it?
Are negative numbers true in c?
How can you allocate arrays or structures bigger than 64K?
What is selection sort in c?
What are the advantages and disadvantages of c language?
Is c call by value?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
using for loop sum 2 number of any 4 digit number in c language
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?