what is a function prototype?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / nashiinformaticssolutions
A function prototype declares the function's name, return type, and parameters without providing the actual implementation.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nashiinformaticssolutions
A declaration of a function that specifies its return type and parameters, e.g., int add(int, int);
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
A function prototype declares the function's name, return type, and parameters without providing the actual implementation.
| Is This Answer Correct ? | 0 Yes | 0 No |
A function prototype declares the function's name, return type, and parameters without providing the actual implementation.
| Is This Answer Correct ? | 0 Yes | 0 No |
control 50 devices which has 2 states on and off.using bitwise operator.plz answer it its urgent
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
How can you access memory located at a certain address?
Explain the difference between fopen() and freopen().
What are compound statements?
how to find sum of digits in C?
Describe the header file and its usage in c programming?
What is the relation between # and include<stdio.h>
what is the difference between declaration ,defenetion and initialization of a variable?
hi folks i m approching for h1 b interview on monday 8th of august at montreal and i m having little problem in my approval notice abt my bithdate my employer has made a mistake while applying it is 12th january and istead of that he had done 18 the of january do any body have any solution for that if yes how can i prove my visa officer abt my real birthdate it urgent please let me know guys thaks dipesh patel
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****