What is meant by
int fun const(int a, int b) {
....
...
}
Answer Posted / srv
In function 'fun' we have made variable a & b constant.
It means we are never going to alter the values of varibles
(a&b).if tried then error will be messaged.
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Explain the difference between malloc() and calloc() in c?
using for loop sum 2 number of any 4 digit number in c language
When can a far pointer be used?
What is the difference between array and linked list in c?
Differentiate between a structure and a union.
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What are data types in c language?
What are the types of functions in c?
Define macros.
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What does c in a circle mean?
What is the difference between far and near in c?
What is main return c?
What do you mean by Recursion Function?
What is the purpose of void in c?